Searched refs:TCP_TCPLEN (Results 1 – 11 of 11) sorted by relevance
1134 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 …]
703 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()
21 - 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) {
41 lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg)));
76 if (TCP_TCPLEN(tmp_seg) > 0) {
162 + if (TCP_TCPLEN(seg) > 0) {272 + next_seqno = seg_seqno + TCP_TCPLEN(seg);
219 lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg)));340 + lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg)));
179 next_seqno = seg_seqno + TCP_TCPLEN(seg);
1190 lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg)));1224 if (TCP_TCPLEN(seg) > 0) {
92 return TCP_TCPLEN(seg); in tcp_oos_seg_tcplen()114 len += TCP_TCPLEN(seg); in tcp_oos_tcplen()
155 #define TCP_TCPLEN(seg) ((seg)->len + (((TCPH_FLAGS((seg)->tcphdr) & (TCP_FIN | TCP_SYN)) != 0) ? 1… macro