Searched refs:TCP_TCPLEN (Results 1 – 3 of 3) sorted by relevance
1103 TCP_TCPLEN(seg_list), ackno)) {1106 lwip_ntohl(seg_list->tcphdr->seqno) + TCP_TCPLEN(seg_list),1277 … lwip_ntohl(pcb->unacked->tcphdr->seqno) + TCP_TCPLEN(pcb->unacked) : 0));1460 tcplen = TCP_TCPLEN(&inseg);1479 tcplen = TCP_TCPLEN(&inseg);1511 tcplen = TCP_TCPLEN(&inseg);1528 tcplen = TCP_TCPLEN(&inseg);1575 pcb->rcv_nxt += TCP_TCPLEN(cseg);1577 pcb->rcv_wnd >= TCP_TCPLEN(cseg));1578 pcb->rcv_wnd -= TCP_TCPLEN(cseg);[all …]
691 lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg))); in tcp_write()1096 lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg), in tcp_enqueue_flags()1373 snd_nxt = lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg); in tcp_output()1378 if (TCP_TCPLEN(seg) > 0) { in tcp_output()1671 pcb->rto_end = lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg); in tcp_rexmit_rto_prepare()
155 #define TCP_TCPLEN(seg) ((seg)->len + (((TCPH_FLAGS((seg)->tcphdr) & (TCP_FIN | TCP_SYN)) != 0) ? 1… macro