Home
last modified time | relevance | path

Searched refs:CILEN_SHORT (Results 1 – 2 of 2) sorted by relevance

/external/ppp/pppd/
Dlcp.c287 #define CILEN_SHORT 4 /* CILEN_VOID + 2 */ macro
678 #define LENCISHORT(neg) ((neg) ? CILEN_SHORT : 0)
723 PUTCHAR(CILEN_SHORT, ucp); \
822 if ((len -= CILEN_SHORT) < 0) \
826 if (cilen != CILEN_SHORT || \
1009 len >= CILEN_SHORT && \
1010 p[1] == CILEN_SHORT && \
1012 len -= CILEN_SHORT; \
1086 && len >= CILEN_SHORT
1087 && p[0] == CI_AUTHTYPE && p[1] >= CILEN_SHORT && p[1] <= len) {
[all …]
/external/syslinux/core/lwip/src/netif/ppp/
Dlcp.c196 #define CILEN_SHORT 4 /* CILEN_VOID + sizeof(short) */ macro
538 #define LENCISHORT(neg) ((neg) ? CILEN_SHORT : 0) in lcp_cilen()
577 PUTCHAR(CILEN_SHORT, ucp); \ in lcp_addci()
660 if ((len -= CILEN_SHORT) < 0) \ in lcp_ackci()
664 if (cilen != CILEN_SHORT || citype != opt) \ in lcp_ackci()
814 len >= CILEN_SHORT && \ in lcp_nakci()
815 p[1] == CILEN_SHORT && \ in lcp_nakci()
817 len -= CILEN_SHORT; \ in lcp_nakci()
877 && len >= CILEN_SHORT in lcp_nakci()
878 && p[0] == CI_AUTHTYPE && p[1] >= CILEN_SHORT && p[1] <= len) { in lcp_nakci()
[all …]