Home
last modified time | relevance | path

Searched refs:snd_nxt (Results 1 – 25 of 33) sorted by relevance

12

/freebsd-13-stable/sys/netinet/
HDtcp_output.c255 (tp->snd_nxt != tp->snd_una)) /* not a retransmit */ in tcp_output()
282 SEQ_LT(tp->snd_nxt, tp->snd_max)) in tcp_output()
287 off = tp->snd_nxt - tp->snd_una; in tcp_output()
430 (tp->snd_nxt - tp->snd_recover)) - in tcp_output()
444 if ((flags & TH_SYN) && SEQ_GT(tp->snd_nxt, tp->snd_una)) { in tcp_output()
513 tp->snd_nxt = tp->snd_una; in tcp_output()
582 if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + in tcp_output()
636 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) /* retransmit case */ in tcp_output()
727 ((tp->t_flags & TF_SENTFIN) == 0 || tp->snd_nxt == tp->snd_una)) in tcp_output()
801 tp->snd_nxt = tp->iss; in tcp_output()
[all …]
HDtcp_sack.c844 (tp->snd_nxt - tp->snd_recover) + num_segs * maxseg); in tcp_sack_partialack()
963 if (SEQ_GEQ(tp->snd_nxt, tp->snd_fack)) in tcp_sack_adjust()
971 if (SEQ_LT(tp->snd_nxt, cur->end)) in tcp_sack_adjust()
973 if (SEQ_GEQ(tp->snd_nxt, p->start)) in tcp_sack_adjust()
976 tp->snd_nxt = p->start; in tcp_sack_adjust()
980 if (SEQ_LT(tp->snd_nxt, cur->end)) in tcp_sack_adjust()
982 tp->snd_nxt = tp->snd_fack; in tcp_sack_adjust()
HDtcp_input.c505 tp->snd_nxt = tp->snd_max; in cc_cong_signal()
1828 tp->snd_nxt == tp->snd_max && in tcp_do_segment()
2121 if (SEQ_LT(tp->snd_nxt, tp->snd_una)) in tcp_do_segment()
2122 tp->snd_nxt = tp->snd_una; in tcp_do_segment()
2129 tp->snd_nxt = th->th_ack; in tcp_do_segment()
2280 tp->rcv_nxt, tp->snd_nxt, TH_ACK); in tcp_do_segment()
2303 tp->snd_nxt, TH_ACK); in tcp_do_segment()
2682 awnd = (tp->snd_nxt - tp->snd_fack) + in tcp_do_segment()
2709 tcp_seq onxt = tp->snd_nxt; in tcp_do_segment()
2752 tp->snd_nxt - tp->snd_una); in tcp_do_segment()
[all …]
HDtcp_timewait.c322 tw->snd_nxt = tp->snd_nxt; in tcp_twstart()
514 th->th_seq != tw->rcv_nxt || th->th_ack != tw->snd_nxt) { in tcp_twcheck()
680 th->th_seq = htonl(tw->snd_nxt); in tcp_twrespond()
HDtcp_seq.h72 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
HDtcp_debug.c220 (u_long)tp->snd_una, (u_long)tp->snd_nxt, (u_long)tp->snd_max); in tcp_trace()
HDtcp_var.h148 tcp_seq snd_nxt; /* send next */ member
527 tcp_seq snd_nxt; member
HDtcp_timer.c868 tp->snd_nxt = tp->snd_una; in tcp_timer_rexmt()
HDtcp_subr.c1024 (int32_t)(tp->snd_nxt - tp->snd_una) < in tcp_default_fb_init()
1044 tp->snd_nxt - tp->snd_una); in tcp_default_fb_init()
3379 tp->snd_nxt = tp->snd_una; in tcp_mtudisc()
HDtcp_syncache.c995 tp->snd_nxt = tp->iss + 1; in syncache_socket()
1367 tp->snd_nxt = tp->iss; in syncache_tfo_expand()
HDtcp_usrreq.c1669 ti->tcpi_snd_nxt = tp->snd_nxt; in tcp_fill_info()
2892 tp->snd_una, tp->snd_max, tp->snd_nxt); in db_print_tcpcb()
/freebsd-13-stable/sys/netinet/cc/
HDcc_dctcp.c173 dctcp_data->save_sndnxt = CCV(ccv, snd_nxt); in dctcp_after_idle()
271 dctcp_data->save_sndnxt = CCV(ccv, snd_nxt); in dctcp_cong_signal()
304 dctcp_data->save_sndnxt = CCV(ccv, snd_nxt); in dctcp_conn_init()
391 dctcp_data->save_sndnxt = CCV(ccv, snd_nxt); in dctcp_update_alpha()
HDcc_newreno.c185 if (CCV(ccv, snd_nxt) == CCV(ccv, snd_max)) in newreno_ack_received()
HDcc_chd.c195 if (CCV(ccv, snd_nxt) == CCV(ccv, snd_max)) { in chd_window_increase()
/freebsd-13-stable/sys/dev/cxgbe/tom/
HDt4_cpl_io.c140 FLOWC_PARAM(SNDNXT, tp->snd_nxt); in send_flowc_wr()
147 tp ? tp->snd_nxt : 0, tp ? tp->rcv_nxt : 0); in send_flowc_wr()
244 send_reset(struct adapter *sc, struct toepcb *toep, uint32_t snd_nxt) in send_reset() argument
279 req->rsvd0 = htobe32(snd_nxt); in send_reset()
281 req->rsvd0 = htobe32(tp->snd_nxt); in send_reset()
389 tp->snd_nxt = iss + 1; in make_established()
889 tp->snd_nxt += plen; in t4_push_frames()
1136 tp->snd_nxt += adjusted_plen; in write_iscsi_mbuf_wr()
1481 tp->snd_una = be32toh(cpl->snd_nxt) - 1; /* exclude FIN */ in do_close_con_rpl()
/freebsd-13-stable/sbin/ipf/ipsend/
HDsock.c303 ti->ti_seq = tcb.snd_nxt - 1; in do_socket()
HDiptests.c1092 ti.ti_seq = htonl(tcb.snd_nxt - 1); in ip_test5()
1106 t->th_seq = htonl(tcb.snd_nxt); in ip_test5()
/freebsd-13-stable/sys/netinet/tcp_stacks/
HDrack.c4940 tp->snd_nxt = tp->snd_max; in rack_cong_signal()
7334 if (SEQ_LT(snd_max, tp->snd_nxt)) { in rack_log_output()
7339 snd_max = tp->snd_nxt; in rack_log_output()
8762 tp->snd_una, tp->snd_max, tp->snd_nxt); in rack_process_to_cumack()
9959 if (SEQ_LT(tp->snd_nxt, tp->snd_una)) { in rack_process_ack()
9960 tp->snd_nxt = tp->snd_una; in rack_process_ack()
10205 tp->snd_nxt = tp->snd_max; in rack_process_data()
10477 if (__predict_false(tp->snd_nxt != tp->snd_max)) { in rack_do_fastnewdata()
10620 if (__predict_false(tp->snd_nxt != tp->snd_max)) { in rack_fastack()
10882 tp->snd_nxt = th->th_ack; in rack_do_syn_sent()
[all …]
HDrack_bbr_common.c803 tp->rcv_nxt, tp->snd_nxt, TH_ACK); in ctf_process_rst()
834 tp->snd_nxt, TH_ACK); in ctf_challenge_ack()
HDtcp_rack.h166 uint32_t snd_nxt; /* th_win for TYPE_ACK */ member
HDtcp_bbr.h237 uint32_t snd_nxt; member
/freebsd-13-stable/usr.sbin/trpt/
HDtrpt.c419 (u_long)tp->snd_una, (u_long)tp->snd_nxt, in tcp_trace()
/freebsd-13-stable/cddl/lib/libdtrace/
HDtcp.d230 tcps_snxt = p == NULL ? 0 : p->snd_nxt;
/freebsd-13-stable/sys/dev/cxgb/common/
HDcxgb_t3_cpl.h768 __be32 snd_nxt; member
928 __be32 snd_nxt; member
/freebsd-13-stable/sys/dev/cxgbe/common/
HDt4_msg.h1005 __be32 snd_nxt; member
1258 __be32 snd_nxt; member
2761 __be32 snd_nxt; member

12