Searched refs:TCP_TCPLEN (Results 1 – 4 of 4) sorted by relevance
1100 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 …]
691 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()
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