• 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

633 	int cilen = strlen (go->name);
636 PUTCHAR (CILEN_NAME + cilen - 1, ucp);
637 for (indx = 0; indx < cilen; ++indx)
664 u_short cilen, citype, cishort;
673 GETCHAR(cilen, p); \
674 if (cilen != CILEN_VOID || \
688 GETCHAR(cilen, p); \
689 if (cilen != (count + 2) || \
709 GETCHAR(cilen, p); \
710 if (cilen != CILEN_NETN || \
723 GETCHAR(cilen, p); \
724 if (cilen != CILEN_PROTOCOL || citype != opt) \
726 len -= cilen; \
772 u_char citype, cilen, *next;
783 GETCHAR (cilen, p);
784 len -= cilen;
785 if (cilen < CILEN_VOID || len < 0)
787 next = &p [cilen - CILEN_VOID];
791 if (!go->neg_nn || no.neg_nn || (cilen != CILEN_NETN))
803 if (!go->neg_node || no.neg_node || (cilen != CILEN_NODEN))
819 if (!go->neg_router || (cilen < CILEN_PROTOCOL))
884 u_short cilen, citype, cishort;
894 GETCHAR(cilen, p); \
895 if (cilen != CILEN_NETN || \
911 GETCHAR(cilen, p); \
912 if (cilen != (count + 2) || \
933 GETCHAR(cilen, p); \
934 if (cilen != CILEN_VOID || citype != opt) \
946 GETCHAR(cilen, p); \
947 if (cilen != CILEN_PROTOCOL) \
997 u_short cilen, citype; /* Parsed len, type */
1023 cilen = l; /* Reject till end of packet */
1028 GETCHAR(cilen, p); /* Parse CI length */
1029 l -= cilen; /* Adjust remaining length */
1030 next += cilen; /* Step to next CI */
1039 if ( !ao->neg_nn || cilen != CILEN_NETN ) {
1082 if ( cilen != CILEN_NODEN ) {
1145 if ( !ao->neg_router || cilen < CILEN_PROTOCOL ) {
1195 if (cilen >= CILEN_NAME) {
1196 int name_size = cilen - CILEN_NAME;
1212 if (cilen != CILEN_COMPLETE)
1250 BCOPY(cip, ucp, cilen); /* Move it */
1253 INCPTR(cilen, ucp);