mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-01-01 12:00:53 +00:00
PPP, LCP: restart flag is not used, build out
We don't support restart mode. Build out unused restart LCP flag.
This commit is contained in:
parent
e7069d6e82
commit
a99fe1fa32
@ -110,7 +110,9 @@ struct epdisc {
|
|||||||
typedef struct lcp_options {
|
typedef struct lcp_options {
|
||||||
unsigned int passive :1; /* Don't die if we don't get a response */
|
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 */
|
unsigned int silent :1; /* Wait for the other end to start first */
|
||||||
|
#if 0 /* UNUSED */
|
||||||
unsigned int restart :1; /* Restart vs. exit after close */
|
unsigned int restart :1; /* Restart vs. exit after close */
|
||||||
|
#endif /* UNUSED */
|
||||||
unsigned int neg_mru :1; /* Negotiate the MRU? */
|
unsigned int neg_mru :1; /* Negotiate the MRU? */
|
||||||
unsigned int neg_asyncmap :1; /* Negotiate the async map? */
|
unsigned int neg_asyncmap :1; /* Negotiate the async map? */
|
||||||
#if PAP_SUPPORT
|
#if PAP_SUPPORT
|
||||||
|
Loading…
Reference in New Issue
Block a user