From a99fe1fa32fc0febfc551db117862bc9d59c8c4a Mon Sep 17 00:00:00 2001 From: Sylvain Rochet Date: Sat, 2 Jul 2016 21:05:01 +0200 Subject: [PATCH] PPP, LCP: restart flag is not used, build out We don't support restart mode. Build out unused restart LCP flag. --- src/include/netif/ppp/lcp.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/include/netif/ppp/lcp.h b/src/include/netif/ppp/lcp.h index 1a63f59b..12e2a05f 100644 --- a/src/include/netif/ppp/lcp.h +++ b/src/include/netif/ppp/lcp.h @@ -110,7 +110,9 @@ struct epdisc { typedef struct lcp_options { unsigned int passive :1; /* Don't die if we don't get a response */ unsigned int silent :1; /* Wait for the other end to start first */ +#if 0 /* UNUSED */ unsigned int restart :1; /* Restart vs. exit after close */ +#endif /* UNUSED */ unsigned int neg_mru :1; /* Negotiate the MRU? */ unsigned int neg_asyncmap :1; /* Negotiate the async map? */ #if PAP_SUPPORT