Searched refs:unsent (Results 1 – 5 of 5) sorted by relevance
128 if (pcb->unsent != NULL) { in tcp_send_fin()422 if (pcb->unsent != NULL) { in tcp_write()668 pcb->unsent = queue; in tcp_write()705 pcb->unsent != NULL); in tcp_write()788 if (pcb->unsent == NULL) { in tcp_enqueue_flags()789 pcb->unsent = seg; in tcp_enqueue_flags()920 seg = pcb->unsent; in tcp_output()1029 seg = pcb->unsent; in tcp_output()1250 seg->next = pcb->unsent; in tcp_rexmit_rto()1289 cur_seg = &(pcb->unsent); in tcp_rexmit()[all …]
1032 pcb->unsent != NULL); in tcp_receive()1055 while (pcb->unsent != NULL && in tcp_receive()1056 TCP_SEQ_BETWEEN(ackno, ntohl(pcb->unsent->tcphdr->seqno) + in tcp_receive()1057 TCP_TCPLEN(pcb->unsent), pcb->snd_nxt)) { in tcp_receive()1059 … ntohl(pcb->unsent->tcphdr->seqno), ntohl(pcb->unsent->tcphdr->seqno) + in tcp_receive()1060 TCP_TCPLEN(pcb->unsent))); in tcp_receive()1062 next = pcb->unsent; in tcp_receive()1063 pcb->unsent = pcb->unsent->next; in tcp_receive()1065 if (pcb->unsent == NULL) { in tcp_receive()1080 pcb->unacked != NULL || pcb->unsent != NULL); in tcp_receive()
385 if (pcb->unsent != NULL) { in tcp_abandon()386 tcp_segs_free(pcb->unsent); in tcp_abandon()1504 if (pcb->unsent != NULL) { in tcp_pcb_purge()1522 tcp_segs_free(pcb->unsent); in tcp_pcb_purge()1524 pcb->unacked = pcb->unsent = NULL; in tcp_pcb_purge()1553 LWIP_ASSERT("unsent segments leaking", pcb->unsent == NULL); in tcp_pcb_remove()
86 (((tpcb)->unsent != NULL) && (((tpcb)->unsent->next != NULL) || \87 ((tpcb)->unsent->len >= (tpcb)->mss))) || \
242 struct tcp_seg *unsent; /* Unsent (queued) segments. */ member
Completed in 11 milliseconds