Home
last modified time | relevance | path

Searched refs:TCPH_HDRLEN (Results 1 – 5 of 5) sorted by relevance

/lib/liblwip/src/netif/ppp/
Dvj.c216 hlen += TCPH_HDRLEN(th); in vj_compress_tcp()
239 hlen += TCPH_HDRLEN(th); in vj_compress_tcp()
261 || TCPH_HDRLEN(th) != TCPH_HDRLEN(oth) in vj_compress_tcp()
263 || (TCPH_HDRLEN(th) > 5 && BCMP(th + 1, oth + 1, (TCPH_HDRLEN(th) - 5) << 2))) { in vj_compress_tcp()
437 || (hlen += TCPH_HDRLEN(((struct tcp_hdr *)&((char *)ip)[hlen])) << 2) in vj_uncompress_uncomp()
/lib/liblwip/src/core/
Dtcp_in.c147 hdrlen = TCPH_HDRLEN(tcphdr); in tcp_input()
1554 if(TCPH_HDRLEN(tcphdr) > 0x5) { in tcp_parseopt()
1555 max_c = (TCPH_HDRLEN(tcphdr) - 5) << 2; in tcp_parseopt()
Dtcp_out.c1134 seg->p->tot_len == (TCPH_HDRLEN(seg->tcphdr) * 4)); in tcp_output_segment()
1140 IP_PROTO_TCP, seg->p->tot_len, TCPH_HDRLEN(seg->tcphdr) * 4); in tcp_output_segment()
Dtcp.c1631 TCPH_HDRLEN(tcphdr), in tcp_debug_print()
/lib/liblwip/src/include/lwip/
Dtcp_impl.h174 #define TCPH_HDRLEN(phdr) (ntohs((phdr)->_hdrlen_rsvd_flags) >> 12) macro