Searched refs:tiwin (Results 1 – 5 of 5) sorted by relevance
/freebsd/sys/netinet/tcp_stacks/ |
H A D | bbr.c | 7680 uint32_t tiwin, int32_t tlen, in bbr_process_ack() argument 7741 if ((th->th_ack == tp->snd_una) && (tiwin == tp->snd_wnd)) in bbr_process_ack() 8137 uint32_t tiwin, int32_t thflags, int32_t nxt_pkt) in bbr_process_data() argument 8153 (tp->snd_wl2 == th->th_ack && tiwin > tp->snd_wnd))))) { in bbr_process_data() 8156 tp->snd_wl2 == th->th_ack && tiwin > tp->snd_wnd) in bbr_process_data() 8158 tp->snd_wnd = tiwin; in bbr_process_data() 8165 if ((tp->snd_wl2 == th->th_ack) && (tiwin < tp->snd_wnd)) { in bbr_process_data() 8166 tp->snd_wnd = tiwin; in bbr_process_data() 8426 uint32_t tiwin, int32_t nxt_pkt) in bbr_do_fastnewdata() argument 8446 if (tiwin && tiwin != tp->snd_wnd) { in bbr_do_fastnewdata() [all …]
|
H A D | rack.c | 447 …uint32_t tiwin, int32_t tlen, int32_t * ofia, int32_t thflags, int32_t * ret_val, int32_t orig_tle… 451 uint32_t tiwin, int32_t thflags, int32_t nxt_pkt); 547 int32_t tlen, uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos); 552 int32_t tlen, uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos); 556 int32_t tlen, uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos); 560 int32_t tlen, uint32_t tiwin, int32_t nxt_pkt, uint8_t iptos); 564 int32_t tlen, uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos); 568 int32_t tlen, uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos); 572 int32_t tlen, uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos); 576 int32_t tlen, uint32_t tiwin, int32_t thflags, int32_t nxt_pkt, uint8_t iptos); [all …]
|
/freebsd/sys/netinet/ |
H A D | tcp_input.c | 1526 uint32_t tiwin; in tcp_do_segment() local 1595 tiwin = th->th_win << tp->snd_scale; in tcp_do_segment() 1597 stats_voi_update_abs_ulong(tp->t_stats, VOI_TCP_FRWIN, tiwin); in tcp_do_segment() 1762 tiwin && tiwin == tp->snd_wnd && in tcp_do_segment() 2419 tp->snd_wnd = tiwin; in tcp_do_segment() 2495 tp->snd_wnd = tiwin; in tcp_do_segment() 2583 (tiwin == tp->snd_wnd || in tcp_do_segment() 3134 (tp->snd_wl2 == th->th_ack && tiwin > tp->snd_wnd))))) { in tcp_do_segment() 3137 tp->snd_wl2 == th->th_ack && tiwin > tp->snd_wnd) in tcp_do_segment() 3139 tp->snd_wnd = tiwin; in tcp_do_segment()
|
H A D | tcp_var.h | 1564 int tcp_do_ack_accounting(struct tcpcb *tp, struct tcphdr *th, struct tcpopt *to, uint32_t tiwin, i…
|
H A D | tcp_subr.c | 4141 tcp_do_ack_accounting(struct tcpcb *tp, struct tcphdr *th, struct tcpopt *to, uint32_t tiwin, int m… in tcp_do_ack_accounting() argument 4163 } else if (tiwin != tp->snd_wnd) { in tcp_do_ack_accounting()
|