mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-03-25 16:44:04 +00:00
moved ppp_settings.lax_recv and ppp_settings.noendpoint bool types (so char) to the ppp_settings bitfield
This commit is contained in:
parent
a44b56dc61
commit
111a1cef52
@ -174,6 +174,8 @@ typedef struct ppp_settings_s {
|
|||||||
u_int hide_password : 1; /* Hide password in dumped packets */
|
u_int hide_password : 1; /* Hide password in dumped packets */
|
||||||
#endif /* PRINTPKT_SUPPORT */
|
#endif /* PRINTPKT_SUPPORT */
|
||||||
u_int noremoteip : 1;
|
u_int noremoteip : 1;
|
||||||
|
u_int lax_recv : 1; /* accept control chars in asyncmap */
|
||||||
|
u_int noendpoint : 1; /* don't send/accept endpoint discriminator */
|
||||||
|
|
||||||
u16_t listen_time; /* time to listen first (ms), waiting for peer to send LCP packet */
|
u16_t listen_time; /* time to listen first (ms), waiting for peer to send LCP packet */
|
||||||
|
|
||||||
@ -201,8 +203,6 @@ typedef struct ppp_settings_s {
|
|||||||
#if PPP_LCP_ADAPTIVE
|
#if PPP_LCP_ADAPTIVE
|
||||||
bool lcp_echo_adaptive; /* request echo only if the link was idle */
|
bool lcp_echo_adaptive; /* request echo only if the link was idle */
|
||||||
#endif
|
#endif
|
||||||
bool lax_recv; /* accept control chars in asyncmap */
|
|
||||||
bool noendpoint; /* don't send/accept endpoint discriminator */
|
|
||||||
|
|
||||||
} ppp_settings;
|
} ppp_settings;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user