Home
last modified time | relevance | path

Searched refs:th_ack (Results 1 – 7 of 7) sorted by relevance

/openthread-3.7.0/third_party/tcplp/bsdtcp/
Dtcp_input.c140 tp->ccv->curack = th->th_ack; in cc_ack_received()
286 tp->ccv->curack = th->th_ack; in cc_cong_signal()
298 tp->ccv->curack = th->th_ack; in cc_post_recovery()
416 tcp_respond(tp, instance, ip6, th, (tcp_seq) 0, th->th_ack, TH_RST); in tcp_dropwithreset()
1233 if (SEQ_GT(th->th_ack, tp->snd_una) && in tcp_do_segment()
1234 SEQ_LEQ(th->th_ack, tp->snd_max) && in tcp_do_segment()
1270 SEQ_GT(th->th_ack, tp->t_rtseq)) { in tcp_do_segment()
1290 SEQ_LEQ(th->th_ack, tp->snd_recover)) in tcp_do_segment()
1291 tp->snd_recover = th->th_ack - 1; in tcp_do_segment()
1301 tp->snd_una = th->th_ack; in tcp_do_segment()
[all …]
Dtcp_sack.c330 tcp_sack_doack(struct tcpcb *tp, struct tcpopt *to, tcp_seq th_ack) in tcp_sack_doack() argument
341 if (SEQ_LT(tp->snd_una, th_ack) && !TAILQ_EMPTY(&tp->snd_holes)) { in tcp_sack_doack()
343 sack_blocks[num_sack_blks++].end = th_ack; in tcp_sack_doack()
357 SEQ_GT(sack.start, th_ack) && in tcp_sack_doack()
393 tp->snd_fack = SEQ_MAX(tp->snd_una, th_ack); in tcp_sack_doack()
Dtcp_timewait.c160 nth->th_ack = htonl(tp->rcv_nxt); in tcp_twrespond()
391 th->th_seq != tp->rcv_nxt || th->th_ack != tp->snd_nxt) in tcp_twcheck()
Dtcp_subr.c254 th->th_ack = 0; in tcpip_fillheaders()
323 nth->th_ack = htonl(ack); in tcp_respond()
Dtcp_var.h454 #define BYTES_THIS_ACK(tp, th) (th->th_ack - tp->snd_una)
589 th->th_ack = ntohl(th->th_ack); in tcp_fields_to_host()
Dtcp.h61 tcp_seq th_ack; /* acknowledgement number */ member
Dtcp_output.c1127 th->th_ack = htonl(tp->rcv_nxt); in tcp_output()