Searched refs:max_window (Results 1 - 14 of 14) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/rose/
H A Dsysctl_net_rose.c23 static int min_window[] = {1}, max_window[] = {7}; variable
116 .extra2 = &max_window
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/netrom/
H A Dsysctl_net_netrom.c28 static int min_window[] = {1}, max_window[] = {127}; variable
108 .extra2 = &max_window
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/third-party/libutp/
H A Dutp.cpp50 // this is the minimum max_window value. It can never drop below this
580 size_t max_window; member in struct:UTPSocket
632 // current time multiplied by max_window / rtt
696 // Test if we're ready to decay max_window
710 max_window = (size_t)(max_window * .5);
712 if (max_window < MIN_WINDOW_SIZE)
713 max_window = MIN_WINDOW_SIZE;
1013 size_t max_send = min(max_window, opt_sndbuf, max_window_user);
1051 size_t max_send = min(max_window, opt_sndbu
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/ax25/
H A Dsysctl_net_ax25.c19 static int min_window[] = {1}, max_window[] = {7}; variable
82 .extra2 = &max_window
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/net/
H A Ddn.h94 unsigned long max_window; member in struct:dn_scp
H A Dtcp.h487 if (tp->max_window >= 512)
488 cutoff = (tp->max_window >> 1);
490 cutoff = tp->max_window;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dtcp.h336 u32 max_window; /* Maximal window ever seen from peer */ member in struct:tcp_sock
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/decnet/
H A Daf_decnet.c523 scp->max_window = NSP_MAX_WINDOW;
1118 DN_SK(newsk)->max_window = decnet_no_fc_max_cwnd;
1457 scp->max_window = u.win;
1599 r_data = &scp->max_window;
H A Ddn_nsp_in.c362 scp->max_window = decnet_no_fc_max_cwnd;
H A Ddn_nsp_out.c435 if (scp->snd_window < scp->max_window)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/ipv4/
H A Dtcp_minisocks.c488 newtp->max_window = newtp->snd_wnd;
H A Dtcp_input.c1109 * the exact amount is rather hard to quantify. However, tp->max_window can
1146 return !before(start_seq, end_seq - tp->max_window);
1752 if (before(TCP_SKB_CB(ack_skb)->ack_seq, prior_snd_una - tp->max_window))
3461 if (nwin > tp->max_window) {
3462 tp->max_window = nwin;
5667 tp->max_window = tp->snd_wnd;
H A Dtcp.c527 return after(tp->write_seq, tp->pushed_seq + (tp->max_window >> 1));
2098 if ((tp->write_seq += tp->max_window + 2) == 0)
H A Dtcp_output.c2553 tp->max_window = 0;

Completed in 200 milliseconds