Home
last modified time | relevance | path

Searched refs:sendwin (Results 1 – 5 of 5) sorted by relevance

/src/sys/netinet/
H A Dtcp_output.c190 uint32_t recwin, sendwin; in tcp_default_output() local
259 sendwin = 0; in tcp_default_output()
268 sendwin = tcp_sack_adjust(tp); in tcp_default_output()
274 sendwin = min(tp->snd_wnd, tp->snd_cwnd + sendwin); in tcp_default_output()
296 cwin = imax(sendwin - tcp_compute_pipe(tp), 0); in tcp_default_output()
298 cwin = imax(sendwin - off, 0); in tcp_default_output()
370 if (sendwin == 0) { in tcp_default_output()
389 sendwin = 1; in tcp_default_output()
413 len = imin(sbavail(&so->so_snd), sendwin) - off; in tcp_default_output()
421 imin(sbavail(&so->so_snd), sendwin) - in tcp_default_output()
[all …]
/src/crypto/heimdal/appl/telnet/telnet/
H A Dsys_bsd.c640 intr(int), intr2(int), susp(int), sendwin(int);
703 sendwin(int sig) in sendwin() function
731 signal(SIGWINCH, sendwin); in sys_telnet_init()
/src/contrib/telnet/telnet/
H A Dsys_bsd.c783 sendwin(int sig __unused) in sendwin() function
811 (void) signal(SIGWINCH, sendwin); in sys_telnet_init()
/src/sys/netinet/tcp_stacks/
H A Dbbr.c11643 bbr_what_can_we_send(struct tcpcb *tp, struct tcp_bbr *bbr, uint32_t sendwin, in bbr_what_can_we_send() argument
11655 if (flight >= sendwin) { in bbr_what_can_we_send()
11663 len = sendwin - flight; in bbr_what_can_we_send()
11814 uint32_t recwin, sendwin; in bbr_output_wtime() local
12029 sendwin = min(tp->snd_wnd, tp->snd_cwnd); in bbr_output_wtime()
12103 sendwin = min(tp->snd_wnd, tp->snd_cwnd); in bbr_output_wtime()
12317 len = bbr_what_can_we_send(tp, bbr, sendwin, avail, sb_offset, cts); in bbr_output_wtime()
12517 tcp_sndbuf_autoscale(tp, so, sendwin); in bbr_output_wtime()
13850 min(sbavail(&so->so_snd) - sb_offset, sendwin); in bbr_output_wtime()
H A Drack.c17935 uint32_t sendwin; in rack_what_can_we_send() local
17938 sendwin = cwnd_to_use; in rack_what_can_we_send()
17940 sendwin = tp->snd_wnd; in rack_what_can_we_send()
17948 if (flight >= sendwin) { in rack_what_can_we_send()
17956 len = sendwin - flight; in rack_what_can_we_send()
18889 uint32_t sendwin, scaleup; in rack_sndbuf_autoscale() local
18893 sendwin = min(rack->r_ctl.cwnd_to_use, tp->snd_wnd); in rack_sndbuf_autoscale()
18899 sendwin >= (sbused(&so->so_snd) - in rack_sndbuf_autoscale()
20071 int sendwin, flight; in rack_output() local
20073 sendwin = min(tp->snd_wnd, tp->snd_cwnd); in rack_output()
[all …]