Home
last modified time | relevance | path

Searched refs:TCP_TCPLEN (Results 1 – 4 of 4) sorted by relevance

/third_party/lwip/src/core/
Dtcp_in.c1100 TCP_TCPLEN(seg_list), ackno)) {
1103 lwip_ntohl(seg_list->tcphdr->seqno) + TCP_TCPLEN(seg_list),
1281 … lwip_ntohl(pcb->unacked->tcphdr->seqno) + TCP_TCPLEN(pcb->unacked) : 0));
1464 tcplen = TCP_TCPLEN(&inseg);
1483 tcplen = TCP_TCPLEN(&inseg);
1515 tcplen = TCP_TCPLEN(&inseg);
1532 tcplen = TCP_TCPLEN(&inseg);
1579 pcb->rcv_nxt += TCP_TCPLEN(cseg);
1581 pcb->rcv_wnd >= TCP_TCPLEN(cseg));
1582 pcb->rcv_wnd -= TCP_TCPLEN(cseg);
[all …]
Dtcp_out.c691 lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg))); in tcp_write()
1097 lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg), in tcp_enqueue_flags()
1374 snd_nxt = lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg); in tcp_output()
1379 if (TCP_TCPLEN(seg) > 0) { in tcp_output()
1672 pcb->rto_end = lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg); in tcp_rexmit_rto_prepare()
/third_party/lwip/test/unit/tcp/
Dtest_tcp_oos.c92 return TCP_TCPLEN(seg); in tcp_oos_seg_tcplen()
114 len += TCP_TCPLEN(seg); in tcp_oos_tcplen()
/third_party/lwip/src/include/lwip/priv/
Dtcp_priv.h155 #define TCP_TCPLEN(seg) ((seg)->len + (((TCPH_FLAGS((seg)->tcphdr) & (TCP_FIN | TCP_SYN)) != 0) ? 1… macro