From 111a1cef5263c9faecf8b1bf6a318ddca56e6b44 Mon Sep 17 00:00:00 2001 From: Sylvain Rochet Date: Tue, 19 Jun 2012 17:07:02 +0200 Subject: [PATCH] moved ppp_settings.lax_recv and ppp_settings.noendpoint bool types (so char) to the ppp_settings bitfield --- src/netif/ppp/ppp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/netif/ppp/ppp.h b/src/netif/ppp/ppp.h index cfb3aeda..13e79757 100644 --- a/src/netif/ppp/ppp.h +++ b/src/netif/ppp/ppp.h @@ -174,6 +174,8 @@ typedef struct ppp_settings_s { u_int hide_password : 1; /* Hide password in dumped packets */ #endif /* PRINTPKT_SUPPORT */ 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 */ @@ -201,8 +203,6 @@ typedef struct ppp_settings_s { #if PPP_LCP_ADAPTIVE bool lcp_echo_adaptive; /* request echo only if the link was idle */ #endif - bool lax_recv; /* accept control chars in asyncmap */ - bool noendpoint; /* don't send/accept endpoint discriminator */ } ppp_settings;