Compare commits

..

2 Commits

Author SHA1 Message Date
Jonas Jonsson
bbab011748
Merge 252ce260a47e648b7d779cdc18ae24a82bcdbaeb into a6c3a9cbbb5e0a99e0d30e58271f27a0d4e9ae90 2025-03-03 09:50:12 +00:00
Jonas Jonsson
252ce260a4 feat(ppp): Improve PPP server + client support
Make it easier to run a PPP server and client on different interfaces by
adding the interface name to logs and expose the PPP passive option.
2025-03-03 10:47:55 +01:00

View File

@ -105,8 +105,6 @@ typedef enum {
IP_EVENT_PPP_GOT_IP, /*!< PPP interface got IP */ IP_EVENT_PPP_GOT_IP, /*!< PPP interface got IP */
IP_EVENT_PPP_LOST_IP, /*!< PPP interface lost IP */ IP_EVENT_PPP_LOST_IP, /*!< PPP interface lost IP */
IP_EVENT_TX_RX, /*!< transmitting/receiving data packet */ IP_EVENT_TX_RX, /*!< transmitting/receiving data packet */
IP_EVENT_PPPD_GOT_IP, /*!< PPP server interface got IP */
IP_EVENT_PPPD_LOST_IP, /*!< PPP server interface lost IP */
} ip_event_t; } ip_event_t;
/** @brief IP event base declaration */ /** @brief IP event base declaration */