| /freebsd-13-stable/sys/netinet/ |
| HD | tcp_output.c | 255 (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 …]
|
| HD | tcp_sack.c | 844 (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()
|
| HD | tcp_input.c | 505 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 …]
|
| HD | tcp_timewait.c | 322 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()
|
| HD | tcp_seq.h | 72 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
|
| HD | tcp_debug.c | 220 (u_long)tp->snd_una, (u_long)tp->snd_nxt, (u_long)tp->snd_max); in tcp_trace()
|
| HD | tcp_var.h | 148 tcp_seq snd_nxt; /* send next */ member 527 tcp_seq snd_nxt; member
|
| HD | tcp_timer.c | 868 tp->snd_nxt = tp->snd_una; in tcp_timer_rexmt()
|
| HD | tcp_subr.c | 1024 (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()
|
| HD | tcp_syncache.c | 995 tp->snd_nxt = tp->iss + 1; in syncache_socket() 1367 tp->snd_nxt = tp->iss; in syncache_tfo_expand()
|
| HD | tcp_usrreq.c | 1669 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/ |
| HD | cc_dctcp.c | 173 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()
|
| HD | cc_newreno.c | 185 if (CCV(ccv, snd_nxt) == CCV(ccv, snd_max)) in newreno_ack_received()
|
| HD | cc_chd.c | 195 if (CCV(ccv, snd_nxt) == CCV(ccv, snd_max)) { in chd_window_increase()
|
| /freebsd-13-stable/sys/dev/cxgbe/tom/ |
| HD | t4_cpl_io.c | 140 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/ |
| HD | sock.c | 303 ti->ti_seq = tcb.snd_nxt - 1; in do_socket()
|
| HD | iptests.c | 1092 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/ |
| HD | rack.c | 4940 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 …]
|
| HD | rack_bbr_common.c | 803 tp->rcv_nxt, tp->snd_nxt, TH_ACK); in ctf_process_rst() 834 tp->snd_nxt, TH_ACK); in ctf_challenge_ack()
|
| HD | tcp_rack.h | 166 uint32_t snd_nxt; /* th_win for TYPE_ACK */ member
|
| HD | tcp_bbr.h | 237 uint32_t snd_nxt; member
|
| /freebsd-13-stable/usr.sbin/trpt/ |
| HD | trpt.c | 419 (u_long)tp->snd_una, (u_long)tp->snd_nxt, in tcp_trace()
|
| /freebsd-13-stable/cddl/lib/libdtrace/ |
| HD | tcp.d | 230 tcps_snxt = p == NULL ? 0 : p->snd_nxt;
|
| /freebsd-13-stable/sys/dev/cxgb/common/ |
| HD | cxgb_t3_cpl.h | 768 __be32 snd_nxt; member 928 __be32 snd_nxt; member
|
| /freebsd-13-stable/sys/dev/cxgbe/common/ |
| HD | t4_msg.h | 1005 __be32 snd_nxt; member 1258 __be32 snd_nxt; member 2761 __be32 snd_nxt; member
|