Home
last modified time | relevance | path

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

/freebsd/sys/netinet/
H A Dtcp_output.c194 uint32_t recwin, sendwin; in tcp_default_output() local
263 sendwin = 0; in tcp_default_output()
272 sendwin = tcp_sack_adjust(tp); in tcp_default_output()
278 sendwin = min(tp->snd_wnd, tp->snd_cwnd + sendwin); in tcp_default_output()
300 cwin = imax(sendwin - tcp_compute_pipe(tp), 0); in tcp_default_output()
302 cwin = imax(sendwin - off, 0); in tcp_default_output()
374 if (sendwin == 0) { in tcp_default_output()
393 sendwin = 1; in tcp_default_output()
417 len = imin(sbavail(&so->so_snd), sendwin) - off; in tcp_default_output()
425 imin(sbavail(&so->so_snd), sendwin) - in tcp_default_output()
[all …]
/freebsd/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()
/freebsd/contrib/telnet/telnet/
H A Dsys_bsd.c783 sendwin(int sig __unused) in sendwin() function
811 (void) signal(SIGWINCH, sendwin); in sys_telnet_init()
/freebsd/sys/netinet/tcp_stacks/
H A Dbbr.c11650 bbr_what_can_we_send(struct tcpcb *tp, struct tcp_bbr *bbr, uint32_t sendwin, in bbr_what_can_we_send() argument
11662 if (flight >= sendwin) { in bbr_what_can_we_send()
11670 len = sendwin - flight; in bbr_what_can_we_send()
11821 uint32_t recwin, sendwin; in bbr_output_wtime() local
12037 sendwin = min(tp->snd_wnd, tp->snd_cwnd); in bbr_output_wtime()
12111 sendwin = min(tp->snd_wnd, tp->snd_cwnd); in bbr_output_wtime()
12325 len = bbr_what_can_we_send(tp, bbr, sendwin, avail, sb_offset, cts); in bbr_output_wtime()
12525 tcp_sndbuf_autoscale(tp, so, sendwin); in bbr_output_wtime()
13862 min(sbavail(&so->so_snd) - sb_offset, sendwin); in bbr_output_wtime()
H A Drack.c18059 uint32_t sendwin; in rack_what_can_we_send() local
18062 sendwin = cwnd_to_use; in rack_what_can_we_send()
18064 sendwin = tp->snd_wnd; in rack_what_can_we_send()
18072 if (flight >= sendwin) { in rack_what_can_we_send()
18080 len = sendwin - flight; in rack_what_can_we_send()
19013 uint32_t sendwin, scaleup; in rack_sndbuf_autoscale() local
19017 sendwin = min(rack->r_ctl.cwnd_to_use, tp->snd_wnd); in rack_sndbuf_autoscale()
19023 sendwin >= (sbused(&so->so_snd) - in rack_sndbuf_autoscale()
20184 int sendwin, flight; in rack_output() local
20186 sendwin = min(tp->snd_wnd, tp->snd_cwnd); in rack_output()
[all …]