| /f-stack/freebsd/netinet/ |
| H A D | tcp_output.c | 285 off = tp->snd_nxt - tp->snd_una; in tcp_output() 502 tp->snd_nxt = tp->snd_una; in tcp_output() 789 tp->snd_nxt = tp->iss; in tcp_output() 1162 tp->snd_nxt == tp->snd_max) in tcp_output() 1163 tp->snd_nxt--; in tcp_output() 1508 tcp_seq startseq = tp->snd_nxt; in tcp_output() 1515 tp->snd_nxt++; in tcp_output() 1517 tp->snd_nxt++; in tcp_output() 1523 tp->snd_nxt += len; in tcp_output() 1525 tp->snd_max = tp->snd_nxt; in tcp_output() [all …]
|
| H A D | tcp_sack.c | 799 (tp->snd_nxt - tp->snd_recover) + num_segs * maxseg); in tcp_sack_partialack() 882 if (SEQ_GEQ(tp->snd_nxt, tp->snd_fack)) in tcp_sack_adjust() 890 if (SEQ_LT(tp->snd_nxt, cur->end)) in tcp_sack_adjust() 892 if (SEQ_GEQ(tp->snd_nxt, p->start)) in tcp_sack_adjust() 895 tp->snd_nxt = p->start; in tcp_sack_adjust() 899 if (SEQ_LT(tp->snd_nxt, cur->end)) in tcp_sack_adjust() 901 tp->snd_nxt = tp->snd_fack; in tcp_sack_adjust()
|
| H A D | tcp_input.c | 487 tp->snd_nxt = tp->snd_max; in cc_cong_signal() 2039 tp->snd_nxt = th->th_ack; in tcp_do_segment() 2213 tp->snd_nxt, TH_ACK); in tcp_do_segment() 2648 tcp_seq onxt = tp->snd_nxt; in tcp_do_segment() 2694 tp->snd_nxt = th->th_ack; in tcp_do_segment() 2704 tp->snd_nxt = onxt; in tcp_do_segment() 2944 tp->snd_nxt = tp->snd_una; in tcp_do_segment() 3983 tcp_seq onxt = tp->snd_nxt; in tcp_newreno_partial_ack() 3991 tp->snd_nxt = th->th_ack; in tcp_newreno_partial_ack() 4000 if (SEQ_GT(onxt, tp->snd_nxt)) in tcp_newreno_partial_ack() [all …]
|
| H A D | tcp_timewait.c | 320 tw->snd_nxt = tp->snd_nxt; in tcp_twstart() 475 th->th_seq != tw->rcv_nxt || th->th_ack != tw->snd_nxt) { in tcp_twcheck() 615 th->th_seq = htonl(tw->snd_nxt); in tcp_twrespond()
|
| H A D | tcp_seq.h | 72 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
|
| H A D | tcp_debug.c | 221 (u_long)tp->snd_una, (u_long)tp->snd_nxt, (u_long)tp->snd_max); in tcp_trace()
|
| H A D | tcp_var.h | 149 tcp_seq snd_nxt; /* send next */ member 505 tcp_seq snd_nxt; member
|
| H A D | tcp_timer.c | 866 tp->snd_nxt = tp->snd_una; in tcp_timer_rexmt()
|
| H A D | tcp_subr.c | 732 (int32_t)(tp->snd_nxt - tp->snd_una) < in tcp_default_fb_init() 752 tp->snd_nxt - tp->snd_una); in tcp_default_fb_init() 2926 tp->snd_nxt = tp->snd_una; in tcp_mtudisc()
|
| H A D | tcp_syncache.c | 1051 tp->snd_nxt = tp->iss + 1; in syncache_socket() 1419 tp->snd_nxt = tp->iss; in syncache_tfo_expand()
|
| H A D | tcp_usrreq.c | 1793 ti->tcpi_snd_nxt = tp->snd_nxt; in tcp_fill_info() 2977 tp->snd_una, tp->snd_max, tp->snd_nxt); in db_print_tcpcb()
|
| H A D | tcp_log_buf.c | 1680 COPY_STAT(snd_nxt); in tcp_log_event_()
|
| /f-stack/freebsd/netinet/cc/ |
| H A D | cc_dctcp.c | 175 dctcp_data->save_sndnxt = CCV(ccv, snd_nxt); in dctcp_after_idle() 273 dctcp_data->save_sndnxt = CCV(ccv, snd_nxt); in dctcp_cong_signal() 306 dctcp_data->save_sndnxt = CCV(ccv, snd_nxt); in dctcp_conn_init() 393 dctcp_data->save_sndnxt = CCV(ccv, snd_nxt); in dctcp_update_alpha()
|
| H A D | cc_newreno.c | 185 if (CCV(ccv, snd_nxt) == CCV(ccv, snd_max)) in newreno_ack_received()
|
| H A D | cc_chd.c | 197 if (CCV(ccv, snd_nxt) == CCV(ccv, snd_max)) { in chd_window_increase()
|
| /f-stack/tools/compat/include/netinet/ |
| H A D | tcp_seq.h | 72 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
|
| H A D | tcp_var.h | 149 tcp_seq snd_nxt; /* send next */ member 505 tcp_seq snd_nxt; member
|
| /f-stack/freebsd/netinet/tcp_stacks/ |
| H A D | rack.c | 4050 tp->snd_nxt = tp->snd_max; in rack_cong_signal() 6143 snd_max = tp->snd_nxt; in rack_log_output() 8370 tp->snd_nxt = tp->snd_una; in rack_process_ack() 10616 tp->snd_nxt = tp->snd_max; in rack_fini() 12460 tp->snd_nxt = tp->iss; in rack_output() 13012 tp->snd_nxt = tp->iss; in rack_output() 13425 tp->snd_nxt--; in rack_output() 13487 rack_seq = tp->snd_nxt; in rack_output() 13887 tp->snd_nxt++; in rack_output() 13889 tp->snd_nxt++; in rack_output() [all …]
|
| H A D | rack_bbr_common.c | 711 tp->rcv_nxt, tp->snd_nxt, TH_ACK); in ctf_process_rst() 742 tp->snd_nxt, TH_ACK); in ctf_challenge_ack()
|
| H A D | tcp_rack.h | 110 uint32_t snd_nxt; /* th_win for TYPE_ACK */ member
|
| H A D | tcp_bbr.h | 239 uint32_t snd_nxt; member
|
| H A D | bbr.c | 7903 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) { in bbr_process_ack() 7904 tp->snd_nxt = tp->snd_max; in bbr_process_ack() 8904 tp->snd_nxt = th->th_ack; in bbr_do_syn_sent() 10348 tp->snd_nxt = tp->snd_max; in bbr_fini() 12903 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) { in bbr_output_wtime() 12905 tp->snd_nxt = tp->snd_max; in bbr_output_wtime() 14168 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) { in bbr_output_wtime() 14170 tp->snd_nxt = tp->snd_max; in bbr_output_wtime() 14222 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) { in bbr_output_wtime() 14224 tp->snd_nxt = tp->snd_max; in bbr_output_wtime()
|