Searched refs:fsm (Results 1 – 6 of 6) sorted by relevance
| /lib/liblwip/src/netif/ppp/ |
| D | fsm.h | 78 typedef struct fsm { struct 95 } fsm; argument 99 void (*resetci)(fsm*); /* Reset our Configuration Information */ 100 int (*cilen)(fsm*); /* Length of our Configuration Information */ 101 void (*addci)(fsm*, u_char*, int*); /* Add our Configuration Information */ 102 int (*ackci)(fsm*, u_char*, int); /* ACK our Configuration Information */ 103 int (*nakci)(fsm*, u_char*, int); /* NAK our Configuration Information */ 104 int (*rejci)(fsm*, u_char*, int); /* Reject our Configuration Information */ 105 int (*reqci)(fsm*, u_char*, int*, int); /* Request peer's Configuration Information */ 106 void (*up)(fsm*); /* Called when fsm reaches LS_OPENED state */ [all …]
|
| D | fsm.c | 85 static void fsm_rconfreq (fsm *, u_char, u_char *, int); 86 static void fsm_rconfack (fsm *, int, u_char *, int); 87 static void fsm_rconfnakrej (fsm *, int, int, u_char *, int); 88 static void fsm_rtermreq (fsm *, int, u_char *, int); 89 static void fsm_rtermack (fsm *); 90 static void fsm_rcoderej (fsm *, u_char *, int); 91 static void fsm_sconfreq (fsm *, int); 104 fsm_init(fsm *f) in fsm_init() 121 fsm_lowerup(fsm *f) in fsm_lowerup() 158 fsm_lowerdown(fsm *f) in fsm_lowerdown() [all …]
|
| D | lcp.c | 98 static fsm lcp_fsm[NUM_PPP]; /* LCP fsm structure (global)*/ 115 static void lcp_resetci (fsm*); /* Reset our CI */ 116 static int lcp_cilen (fsm*); /* Return length of our CI */ 117 static void lcp_addci (fsm*, u_char*, int*); /* Add our CI to pkt */ 118 static int lcp_ackci (fsm*, u_char*, int); /* Peer ack'd our CI */ 119 static int lcp_nakci (fsm*, u_char*, int); /* Peer nak'd our CI */ 120 static int lcp_rejci (fsm*, u_char*, int); /* Peer rej'd our CI */ 121 static int lcp_reqci (fsm*, u_char*, int*, int); /* Rcv peer CI */ 122 static void lcp_up (fsm*); /* We're UP */ 123 static void lcp_down (fsm*); /* We're DOWN */ [all …]
|
| D | ipcp.c | 86 static void ipcp_resetci (fsm *); /* Reset our CI */ 87 static int ipcp_cilen (fsm *); /* Return length of our CI */ 88 static void ipcp_addci (fsm *, u_char *, int *); /* Add our CI */ 89 static int ipcp_ackci (fsm *, u_char *, int); /* Peer ack'd our CI */ 90 static int ipcp_nakci (fsm *, u_char *, int); /* Peer nak'd our CI */ 91 static int ipcp_rejci (fsm *, u_char *, int); /* Peer rej'd our CI */ 92 static int ipcp_reqci (fsm *, u_char *, int *, int); /* Rcv CI */ 93 static void ipcp_up (fsm *); /* We're UP */ 94 static void ipcp_down (fsm *); /* We're DOWN */ 96 static void ipcp_script (fsm *, char *); /* Run an up/down script */ [all …]
|
| D | ipcp.h | 98 extern fsm ipcp_fsm[];
|
| /lib/liblwip/ |
| D | CHANGELOG | 1838 * ppp_oe.c ppp_oe.h, auth.c chap.c fsm.c lcp.c ppp.c ppp.h,
|