Home
last modified time | relevance | path

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

/lib/liblwip/src/netif/ppp/
Dchap.c147 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);
160 chap_state *cstate = &chap[unit]; in ChapInit() local
162 BZERO(cstate, sizeof(*cstate)); in ChapInit()
163 cstate->unit = unit; in ChapInit()
164 cstate->clientstate = CHAPCS_INITIAL; in ChapInit()
165 cstate->serverstate = CHAPSS_INITIAL; in ChapInit()
166 cstate->timeouttime = CHAP_DEFTIMEOUT; in ChapInit()
167 cstate->max_transmits = CHAP_DEFTRANSMITS; in ChapInit()
179 chap_state *cstate = &chap[unit]; in ChapAuthWithPeer() local
[all …]
Dvj.h105 struct cstate { struct
106 struct cstate *cs_next; /* next most recently used state (xmit only) */ argument
134 struct cstate *last_cs; /* most recently used tstate */ argument
143 struct cstate tstate[MAX_SLOTS]; /* xmit connection states */
144 struct cstate rstate[MAX_SLOTS]; /* receive connection states */
Dvj.c54 register struct cstate *tstate = comp->tstate; in vj_compress_init()
141 register struct cstate *cs = comp->last_cs->cs_next; in vj_compress_tcp()
193 register struct cstate *lcs; in vj_compress_tcp()
194 register struct cstate *lastcs = comp->last_cs; in vj_compress_tcp()
430 register struct cstate *cs; in vj_uncompress_uncomp()
468 struct cstate *cs; in vj_uncompress_tcp()
Dchpms.c366 ChapMS( chap_state *cstate, char *rchallenge, int rchallenge_len, char *secret, int secret_len) in ChapMS() argument
390 BCOPY(&response, cstate->response, MS_CHAP_RESPONSE_LEN); in ChapMS()
391 cstate->resp_length = MS_CHAP_RESPONSE_LEN; in ChapMS()