Home
last modified time | relevance | path

Searched refs:t_ccv (Results 1 – 8 of 8) sorted by relevance

/freebsd/sys/netinet/
H A Dtcp_input.c302 tp->t_ccv.nsegs = nsegs; in cc_ack_received()
303 tp->t_ccv.bytes_this_ack = BYTES_THIS_ACK(tp, th); in cc_ack_received()
307 tp->t_ccv.flags |= CCF_CWND_LIMITED; in cc_ack_received()
309 tp->t_ccv.flags &= ~CCF_CWND_LIMITED; in cc_ack_received()
317 tp->t_ccv.bytes_this_ack / (tcp_maxseg(tp) * nsegs)); in cc_ack_received()
342 tp->t_bytes_acked += tp->t_ccv.bytes_this_ack; in cc_ack_received()
345 tp->t_ccv.flags |= CCF_ABC_SENTAWND; in cc_ack_received()
348 tp->t_ccv.flags &= ~CCF_ABC_SENTAWND; in cc_ack_received()
355 tp->t_ccv.curack = th->th_ack; in cc_ack_received()
356 CC_ALGO(tp)->ack_received(&tp->t_ccv, type); in cc_ack_received()
[all …]
H A Dtcp_timer.c746 CC_ALGO(tp)->conn_init(&tp->t_ccv); in tcp_timer_rexmt()
775 CC_ALGO(tp)->conn_init(&tp->t_ccv); in tcp_timer_rexmt()
H A Dtcp_usrreq.c1993 CC_ALGO(tp)->cb_destroy(&tp->t_ccv); in tcp_set_cc_mod()
1997 memcpy(&tp->t_ccv, &cc_mem, sizeof(struct cc_var)); in tcp_set_cc_mod()
2003 CC_ALGO(tp)->conn_init(&tp->t_ccv); in tcp_set_cc_mod()
2074 error = CC_ALGO(tp)->ctl_output(&tp->t_ccv, sopt, pbuf); in tcp_default_ctloutput()
H A Dtcp_subr.c2229 tp->t_ccv.tp = tp; in tcp_newtcpcb()
2262 if (CC_ALGO(tp)->cb_init(&tp->t_ccv, NULL) > 0) { in tcp_newtcpcb()
2273 CC_ALGO(tp)->cb_destroy(&tp->t_ccv); in tcp_newtcpcb()
2354 CC_ALGO(tp)->cb_destroy(&tp->t_ccv); in tcp_newtcpcb()
2430 CC_ALGO(tp)->cb_destroy(&tp->t_ccv); in tcp_discardcb()
H A Dtcp_var.h431 struct cc_var t_ccv; /* congestion control specific vars */ member
H A Dtcp_output.c182 CC_ALGO(tp)->after_idle(&tp->t_ccv); in cc_after_idle()
/freebsd/sys/netinet/cc/
H A Dcc.h208 #define CC_DATA(tp) ((tp)->t_ccv.cc_data)
/freebsd/sys/netinet/tcp_stacks/
H A Drack.c647 error = CC_ALGO(tp)->ctl_output(&tp->t_ccv, &sopt, &opt); in rack_swap_beta_values()
654 error = CC_ALGO(tp)->ctl_output(&tp->t_ccv, &sopt, &opt); in rack_swap_beta_values()
665 error = CC_ALGO(tp)->ctl_output(&tp->t_ccv, &sopt, &opt); in rack_swap_beta_values()
672 error = CC_ALGO(tp)->ctl_output(&tp->t_ccv, &sopt, &opt); in rack_swap_beta_values()
685 ptr = ((struct newreno *)tp->t_ccv.cc_data); in rack_swap_beta_values()
4322 rack->rc_tp->t_ccv.flags &= ~CCF_ABC_SENTAWND; in rack_exit_probertt()
5469 tp->t_ccv.nsegs = nsegs; in rack_ack_received()
5470 acked = tp->t_ccv.bytes_this_ack = (th_ack - tp->snd_una); in rack_ack_received()
5475 if (tp->t_ccv.bytes_this_ack > max) { in rack_ack_received()
5476 tp->t_ccv.bytes_this_ack = max; in rack_ack_received()
[all …]