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

Lines Matching defs:cilen

755     u_char cilen, citype, cichar;

769 GETCHAR(cilen, p); \
770 if (cilen != CILEN_VOID || \
779 GETCHAR(cilen, p); \
780 if (cilen != CILEN_SHORT || \
792 GETCHAR(cilen, p); \
793 if (cilen != CILEN_CHAR || \
805 GETCHAR(cilen, p); \
806 if (cilen != CILEN_CHAP || \
821 GETCHAR(cilen, p); \
822 if (cilen != CILEN_LONG || \
834 GETCHAR(cilen, p); \
835 if (cilen != CILEN_LQR || \
851 GETCHAR(cilen, p); \
852 if (cilen != CILEN_CHAR + vlen || \
915 int cilen;
1035 cilen = p[1];
1036 len -= cilen;
1041 if (cishort == PPP_PAP && cilen == CILEN_SHORT) {
1051 } else if (cishort == PPP_CHAP && cilen == CILEN_CHAP) {
1084 p += cilen - CILEN_SHORT;
1159 GETCHAR(cilen, p);
1160 if (cilen < CILEN_VOID || (len -= cilen) < 0)
1162 next = p + cilen - 2;
1167 || no.neg_mru || cilen != CILEN_SHORT)
1177 || no.neg_asyncmap || cilen != CILEN_LONG)
1186 cilen != CILEN_LONG)
1191 || cilen != CILEN_VOID)
1196 || cilen != CILEN_VOID)
1200 if (go->neg_lqr || no.neg_lqr || cilen != CILEN_LQR)
1204 if (go->neg_mrru || no.neg_mrru || cilen != CILEN_SHORT)
1208 if (go->neg_ssnhf || no.neg_ssnhf || cilen != CILEN_VOID)
1213 if (go->neg_endpoint || no.neg_endpoint || cilen < CILEN_CHAR)
1420 int cilen, citype, cichar; /* Parsed len, type, char value */
1449 cilen = l; /* Reject till end of packet */
1455 GETCHAR(cilen, p); /* Parse CI length */
1456 l -= cilen; /* Adjust remaining length */
1457 next += cilen; /* Step to next CI */
1462 cilen != CILEN_SHORT) { /* Check CI length */
1486 cilen != CILEN_LONG) {
1508 if (cilen < CILEN_SHORT ||
1531 cilen != CILEN_SHORT) {
1549 cilen != CILEN_CHAP) {
1598 cilen != CILEN_LQR) {
1618 cilen != CILEN_LONG) {
1643 cilen != CILEN_VOID) {
1652 cilen != CILEN_VOID) {
1661 cilen != CILEN_SHORT) {
1674 cilen != CILEN_VOID) {
1683 cilen < CILEN_CHAR ||
1684 cilen > CILEN_CHAR + MAX_ENDP_LEN) {
1689 cilen -= CILEN_CHAR;
1692 ho->endpoint.length = cilen;
1693 BCOPY(p, ho->endpoint.value, cilen);
1694 INCPTR(cilen, p);
1721 BCOPY(cip, rejp, cilen); /* Move it */
1722 INCPTR(cilen, rejp); /* Update output pointer */