Home
last modified time | relevance | path

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

/third_party/lwip/src/core/
Dtcp_in.c1134 TCP_TCPLEN(seg_list), ackno)) {
1137 lwip_ntohl(seg_list->tcphdr->seqno) + TCP_TCPLEN(seg_list),
1315 … lwip_ntohl(pcb->unacked->tcphdr->seqno) + TCP_TCPLEN(pcb->unacked) : 0));
1498 tcplen = TCP_TCPLEN(&inseg);
1517 tcplen = TCP_TCPLEN(&inseg);
1549 tcplen = TCP_TCPLEN(&inseg);
1566 tcplen = TCP_TCPLEN(&inseg);
1613 pcb->rcv_nxt += TCP_TCPLEN(cseg);
1615 pcb->rcv_wnd >= TCP_TCPLEN(cseg));
1616 pcb->rcv_wnd -= TCP_TCPLEN(cseg);
[all …]
Dtcp_out.c703 lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg))); in tcp_write()
1109 lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg), in tcp_enqueue_flags()
1386 snd_nxt = lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg); in tcp_output()
1391 if (TCP_TCPLEN(seg) > 0) { in tcp_output()
1684 pcb->rto_end = lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg); in tcp_rexmit_rto_prepare()
/third_party/lwip/
D0056-fix-tso-small-packet-drop-in-kernel-server.patch21 - if (TCP_TCPLEN(seg) > 0) {
210 - next_seqno = seg_seqno + TCP_TCPLEN(seg);
249 + snd_nxt = last_seg_seqno + TCP_TCPLEN(last_seg);
265 + if (TCP_TCPLEN(tmp_seg) > 0) {
D0032-fix-free-pbuf-miss-data.patch41 lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg)));
D0059-fix-last_unsent-last_unacked.patch76 if (TCP_TCPLEN(tmp_seg) > 0) {
D0038-add-tso.patch162 + if (TCP_TCPLEN(seg) > 0) {
272 + next_seqno = seg_seqno + TCP_TCPLEN(seg);
D0075-adapt-read-write-for-rtc-mode.patch219 lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg)));
340 + lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg)));
D0041-optimite-pcb-list-limit-send-size-and-ack-now.patch179 next_seqno = seg_seqno + TCP_TCPLEN(seg);
D0053-cleancode-improve-lwipopts.h-readability.patch1190 lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg)));
1224 if (TCP_TCPLEN(seg) > 0) {
/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