Home | History | Annotate | Download | only in pppd

Lines Matching refs:code

184  * Convert EAP state code to printable string for debug.
2082 u_char code, id;
2086 * Parse header (code, id and length). If packet too short,
2093 GETCHAR(code, inp);
2103 /* Dispatch based on message code */
2104 switch (code) {
2121 default: /* XXX Need code reject */
2123 warn("EAP: unknown code %d received", code);
2150 int code, id, len, rtype, vallen;
2157 GETCHAR(code, inp);
2163 if (code >= 1 && code <= sizeof(eap_codenames) / sizeof(char *))
2164 printer(arg, " %s", eap_codenames[code-1]);
2166 printer(arg, " code=0x%x", code);
2169 switch (code) {