mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2025-08-04 21:44:38 +08: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.
|
* configure-requests. We do this by delaying the fsm_lowerup call.
|
||||||
*/
|
*/
|
||||||
/* steal a bit in fsm flags word */
|
/* steal a bit in fsm flags word */
|
||||||
#define DELAYED_UP 0x100
|
#define DELAYED_UP 0x80
|
||||||
|
|
||||||
static void lcp_delayed_up(void *arg);
|
static void lcp_delayed_up(void *arg);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user