• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp-2.4.4/pppd/

Lines Matching defs:cilen

797     u_char cilen, citype, cichar;
811 GETCHAR(cilen, p); \
812 if (cilen != CILEN_VOID || \
821 GETCHAR(cilen, p); \
822 if (cilen != CILEN_SHORT || \
834 GETCHAR(cilen, p); \
835 if (cilen != CILEN_CHAR || \
847 GETCHAR(cilen, p); \
848 if (cilen != CILEN_CHAP || \
863 GETCHAR(cilen, p); \
864 if (cilen != CILEN_LONG || \
876 GETCHAR(cilen, p); \
877 if (cilen != CILEN_LQR || \
893 GETCHAR(cilen, p); \
894 if (cilen != CILEN_CHAR + vlen || \
960 int cilen;
1084 cilen = p[1];
1085 len -= cilen;
1091 if (cishort == PPP_PAP && cilen == CILEN_SHORT) {
1106 } else if (cishort == PPP_CHAP && cilen == CILEN_CHAP) {
1149 if (cishort == PPP_EAP && cilen == CILEN_SHORT && go->neg_eap)
1162 p += cilen - CILEN_SHORT;
1244 GETCHAR(cilen, p);
1245 if (cilen < CILEN_VOID || (len -= cilen) < 0)
1247 next = p + cilen - 2;
1252 || no.neg_mru || cilen != CILEN_SHORT)
1262 || no.neg_asyncmap || cilen != CILEN_LONG)
1272 cilen != CILEN_LONG)
1277 || cilen != CILEN_VOID)
1282 || cilen != CILEN_VOID)
1286 if (go->neg_lqr || no.neg_lqr || cilen != CILEN_LQR)
1290 if (go->neg_mrru || no.neg_mrru || cilen != CILEN_SHORT)
1294 if (go->neg_ssnhf || no.neg_ssnhf || cilen != CILEN_VOID)
1299 if (go->neg_endpoint || no.neg_endpoint || cilen < CILEN_CHAR)
1509 int cilen, citype, cichar; /* Parsed len, type, char value */
1538 cilen = l; /* Reject till end of packet */
1544 GETCHAR(cilen, p); /* Parse CI length */
1545 l -= cilen; /* Adjust remaining length */
1546 next += cilen; /* Step to next CI */
1551 cilen != CILEN_SHORT) { /* Check CI length */
1575 cilen != CILEN_LONG) {
1597 if (cilen < CILEN_SHORT ||
1622 cilen != CILEN_SHORT) {
1646 cilen != CILEN_CHAP) {
1681 if (ho->neg_chap || ho->neg_upap || cilen != CILEN_SHORT) {
1726 cilen != CILEN_LQR) {
1750 cilen != CILEN_LONG) {
1775 cilen != CILEN_VOID) {
1784 cilen != CILEN_VOID) {
1793 cilen != CILEN_SHORT) {
1806 cilen != CILEN_VOID) {
1815 cilen < CILEN_CHAR ||
1816 cilen > CILEN_CHAR + MAX_ENDP_LEN) {
1821 cilen -= CILEN_CHAR;
1824 ho->endpoint.length = cilen;
1825 BCOPY(p, ho->endpoint.value, cilen);
1826 INCPTR(cilen, p);
1853 BCOPY(cip, rejp, cilen); /* Move it */
1854 INCPTR(cilen, rejp); /* Update output pointer */