Compare commits

..

2 Commits

Author SHA1 Message Date
Jonas Jonsson
112b74abd4
Merge 7326fe39d8820bd1b3c9bb78deeb8dca7840076a into a6c3a9cbbb5e0a99e0d30e58271f27a0d4e9ae90 2025-03-02 07:24:04 +01:00
Jonas Jonsson
7326fe39d8 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.

The addition of IP_EVENT_PPPD_{GOT,LOST}_IP events make it possible
differentiate between client and server events.
2025-02-24 17:26:03 +01:00

View File

@ -105,6 +105,8 @@ typedef enum {
IP_EVENT_PPP_GOT_IP, /*!< PPP interface got IP */
IP_EVENT_PPP_LOST_IP, /*!< PPP interface lost IP */
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;
/** @brief IP event base declaration */