Home
last modified time | relevance | path

Searched refs:msglen (Results 1 – 3 of 3) sorted by relevance

/lib/liblwip/src/netif/ppp/
Dpap.c396 int msglen; in upap_rauthreq() local
442 retcode = check_passwd(u->us_unit, ruser, ruserlen, rpasswd, rpasswdlen, &msg, &msglen); in upap_rauthreq()
446 upap_sresp(u, retcode, id, msg, msglen); in upap_rauthreq()
468 u_char msglen; in upap_rauthack() local
486 GETCHAR(msglen, inp); in upap_rauthack()
487 if (msglen > 0) { in upap_rauthack()
489 if (len < msglen) { in upap_rauthack()
494 PRINTMSG(msg, msglen); in upap_rauthack()
510 u_char msglen; in upap_rauthnak() local
527 GETCHAR(msglen, inp); in upap_rauthnak()
[all …]
Dauth.c862 …_passwd( int unit, char *auser, int userlen, char *apasswd, int passwdlen, char **msg, int *msglen) in check_passwd() argument
870 LWIP_UNUSED_ARG(msglen); in check_passwd()
896 *msglen = strlen(*msg); in check_passwd()
920 *msglen = strlen(*msg); in check_passwd()
957 plogin(char *user, char *passwd, char **msg, int *msglen)
963 LWIP_UNUSED_ARG(msglen);
Dchap.c749 int outlen, msglen; in ChapSendStatus() local
757 msglen = (int)strlen(msg); in ChapSendStatus()
759 outlen = CHAP_HEADERLEN + msglen; in ChapSendStatus()
767 BCOPY(msg, outp, msglen); in ChapSendStatus()