mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-01-06 09:56:38 +00:00
PPP, fixed LCP delayed up feature
LCP is stealing a bit from fsm->flags struct member for LCP delayed up feature. Bit stealed used to be the 9th bit (0x100) but fsm->flags was reduced to u8_t to save memory, we are now stealing the 8th bit (0x80).
This commit is contained in:
parent
ba948669cd
commit
2fa7e003b1
@ -68,7 +68,7 @@
|
||||
* configure-requests. We do this by delaying the fsm_lowerup call.
|
||||
*/
|
||||
/* steal a bit in fsm flags word */
|
||||
#define DELAYED_UP 0x100
|
||||
#define DELAYED_UP 0x80
|
||||
|
||||
static void lcp_delayed_up(void *arg);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user