Home | History | Annotate | Download | only in ppp

Lines Matching defs:msglen

396   int msglen;
442 retcode = check_passwd(u->us_unit, ruser, ruserlen, rpasswd, rpasswdlen, &msg, &msglen);
446 upap_sresp(u, retcode, id, msg, msglen);
468 u_char msglen;
486 GETCHAR(msglen, inp);
487 if (msglen > 0) {
489 if (len < msglen) {
494 PRINTMSG(msg, msglen);
510 u_char msglen;
527 GETCHAR(msglen, inp);
528 if(msglen > 0) {
530 if (len < msglen) {
535 PRINTMSG(msg, msglen);
584 upap_sresp(upap_state *u, u_char code, u_char id, char *msg, int msglen)
589 outlen = UPAP_HEADERLEN + sizeof (u_char) + msglen;
596 PUTCHAR(msglen, outp);
597 BCOPY(msg, outp, msglen);