From 0e2d5f9d0e3f161c9a5e79cfa1783826d07cd835 Mon Sep 17 00:00:00 2001 From: Sylvain Rochet Date: Sat, 16 Jun 2012 14:53:13 +0200 Subject: [PATCH] removed unused inpacket_buf in ppp_pcb --- src/netif/ppp/ppp.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/netif/ppp/ppp.h b/src/netif/ppp/ppp.h index 53c6ca80..fda50588 100644 --- a/src/netif/ppp/ppp.h +++ b/src/netif/ppp/ppp.h @@ -468,9 +468,6 @@ typedef struct ppp_pcb_s { /* FIXME: do we really need such a large buffer? The typical 1500 bytes seem too much. */ u_char nak_buffer[PPP_MRU]; /* where we construct a nak packet */ int lcp_loopbackfail; -#if PPPOS_SUPPORT - -#endif /* #if PPPOS_SUPPORT */ fsm ipcp_fsm; /* IPCP fsm structure */ ipcp_options ipcp_wantoptions; /* Options that we want to request */ @@ -489,10 +486,6 @@ typedef struct ppp_pcb_s { */ u_char outpacket_buf[PPP_MRU+PPP_HDRLEN]; /* buffer for outgoing packet */ -#if PPPOS_SUPPORT - u_char inpacket_buf[PPP_MRU+PPP_HDRLEN]; /* buffer for incoming packet */ -#endif /* PPPOS_SUPPORT */ - } ppp_pcb; /************************