Home
last modified time | relevance | path

Searched refs:chap_state (Results 1 – 4 of 4) sorted by relevance

/lib/liblwip/src/netif/ppp/
Dchap.c140 chap_state chap[NUM_PPP]; /* CHAP state; one for each unit */
144 static void ChapReceiveChallenge (chap_state *, u_char *, u_char, int);
146 static void ChapReceiveResponse (chap_state *, u_char *, int, int);
147 static void ChapReceiveSuccess(chap_state *cstate, u_char *inp, u_char id, int len);
148 static void ChapReceiveFailure(chap_state *cstate, u_char *inp, u_char id, int len);
149 static void ChapSendStatus (chap_state *, int);
150 static void ChapSendChallenge (chap_state *);
151 static void ChapSendResponse (chap_state *);
152 static void ChapGenChallenge (chap_state *);
160 chap_state *cstate = &chap[unit]; in ChapInit()
[all …]
Dchap.h99 typedef struct chap_state { struct
119 } chap_state; argument
143 extern chap_state chap[];
Dchpms.h62 void ChapMS (chap_state *, char *, int, char *, int);
Dchpms.c366 ChapMS( chap_state *cstate, char *rchallenge, int rchallenge_len, char *secret, int secret_len) in ChapMS()