removed unused inpacket_buf in ppp_pcb

This commit is contained in:
Sylvain Rochet 2012-06-16 14:53:13 +02:00
parent 3065b9f968
commit 0e2d5f9d0e

View File

@ -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;
/************************