Home
last modified time | relevance | path

Searched refs:NUM_PPP (Results 1 – 10 of 10) sorted by relevance

/lib/liblwip/src/netif/ppp/
Dppp.c255 static PPPControl pppControl[NUM_PPP]; /* The PPP interface control blocks. */
285 u_char outpacket_buf[NUM_PPP][PPP_MRU+PPP_HDRLEN];
452 for (i = 0; i < NUM_PPP; i++) { in pppInit()
549 for (pd = 0; pd < NUM_PPP && pppControl[pd].openFlag != 0; pd++); in pppOverSerialOpen()
551 if (pd >= NUM_PPP) { in pppOverSerialOpen()
623 for (pd = 0; pd < NUM_PPP && pppControl[pd].openFlag != 0; pd++); in pppOverEthernetOpen()
624 if (pd >= NUM_PPP) { in pppOverEthernetOpen()
826 if (pd < 0 || pd >= NUM_PPP || !pc->openFlag || !pb) { in pppifOutput()
966 if (pd < 0 || pd >= NUM_PPP) { in pppIOCtl()
1019 if (pd < 0 || pd >= NUM_PPP || !pc->openFlag) { in pppMTU()
[all …]
Dlcp.h130 extern LinkPhase lcp_phase[NUM_PPP]; /* Phase of link session (RFC 1661) */
Dipcp.c73 ipcp_options ipcp_wantoptions[NUM_PPP]; /* Options that we want to request */
74 ipcp_options ipcp_gotoptions[NUM_PPP]; /* Options that peer ack'd */
75 ipcp_options ipcp_allowoptions[NUM_PPP]; /* Options we allow peer to request */
76 ipcp_options ipcp_hisoptions[NUM_PPP]; /* Options that we ack'd */
79 static int default_route_set[NUM_PPP]; /* Have set up a default route */
80 static int cis_received[NUM_PPP]; /* # Conf-Reqs received */
101 fsm ipcp_fsm[NUM_PPP]; /* IPCP fsm structure */
Dlcp.c93 LinkPhase lcp_phase[NUM_PPP]; /* Phase of link session (RFC 1661) */
98 static fsm lcp_fsm[NUM_PPP]; /* LCP fsm structure (global)*/
99 lcp_options lcp_wantoptions[NUM_PPP]; /* Options that we want to request */
100 lcp_options lcp_gotoptions[NUM_PPP]; /* Options that peer ack'd */
101 lcp_options lcp_allowoptions[NUM_PPP]; /* Options we allow peer to request */
102 lcp_options lcp_hisoptions[NUM_PPP]; /* Options that we ack'd */
103 ext_accm xmit_accm[NUM_PPP]; /* extended transmit ACCM */
Dppp_impl.h307 extern u_char outpacket_buf[NUM_PPP][PPP_MRU+PPP_HDRLEN];
Dauth.c103 static int auth_pending[NUM_PPP];
112 static struct wordlist *addresses[NUM_PPP];
Dpap.c121 upap_state upap[NUM_PPP]; /* UPAP state; one for each unit */
Dchap.c140 chap_state chap[NUM_PPP]; /* CHAP state; one for each unit */
Dfsm.c95 int peer_mru[NUM_PPP];
/lib/liblwip/src/include/lwip/
Dopt.h1649 #ifndef NUM_PPP
1650 #define NUM_PPP 1 macro