Searched refs:snd_cwnd (Results 1 - 11 of 11) sorted by relevance

/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv4/
H A Dtcp_input.c358 * he can only send snd_cwnd unacked packets at any given time. For
359 * each ACK we send, he increments snd_cwnd and transmits more of his
564 (tp->snd_cwnd>>1) > dst->ssthresh)
565 dst->ssthresh = (tp->snd_cwnd>>1);
567 tp->snd_cwnd > dst->cwnd)
568 dst->cwnd = tp->snd_cwnd;
569 } else if (tp->snd_cwnd > tp->snd_ssthresh &&
573 dst->ssthresh = max(tp->snd_cwnd>>1, tp->snd_ssthresh);
575 dst->cwnd = (dst->cwnd + tp->snd_cwnd)>>1;
672 tp->snd_cwnd
[all...]
H A Dtcp_output.c106 u32 cwnd = tp->snd_cwnd;
113 tp->snd_cwnd = max(cwnd, restart_cwnd);
922 if (tcp_packets_in_flight(tp) >= tp->snd_cwnd)
970 if (tcp_packets_in_flight(tp) >= tp->snd_cwnd)
H A Dtcp_diag.c184 info->tcpi_snd_cwnd = tp->snd_cwnd;
H A Dtcp.c2118 tp->snd_cwnd = 2;
2501 info.tcpi_snd_cwnd = tp->snd_cwnd;
H A Dtcp_minisocks.c715 newtp->snd_cwnd = 2;
H A Dtcp_ipv4.c2011 tp->snd_cwnd = 2;
2127 tp->snd_cwnd, tp->snd_ssthresh>=0xFFFF?-1:tp->snd_ssthresh
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/net/
H A Dtcp.h1070 return max(tp->snd_cwnd >> 1U, 2U);
1083 ((tp->snd_cwnd >> 1) +
1084 (tp->snd_cwnd >> 2)));
1100 if (tp->packets_out >= tp->snd_cwnd) {
1119 tp->snd_cwnd = min(tp->snd_cwnd,
1209 ((tcp_packets_in_flight(tp) < tp->snd_cwnd) ||
H A Dsock.h324 __u32 snd_cwnd; /* Sending congestion window */ member in struct:tcp_opt
326 __u16 snd_cwnd_clamp; /* Do not allow snd_cwnd to grow above this */
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/net/
H A Dtcp.h1071 return max(tp->snd_cwnd >> 1U, 2U);
1084 ((tp->snd_cwnd >> 1) +
1085 (tp->snd_cwnd >> 2)));
1101 if (tp->packets_out >= tp->snd_cwnd) {
1120 tp->snd_cwnd = min(tp->snd_cwnd,
1210 ((tcp_packets_in_flight(tp) < tp->snd_cwnd) ||
H A Dsock.h376 __u32 snd_cwnd; /* Sending congestion window */ member in struct:tcp_opt
378 __u16 snd_cwnd_clamp; /* Do not allow snd_cwnd to grow above this */
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv6/
H A Dtcp_ipv6.c1807 tp->snd_cwnd = 2;
1936 tp->snd_cwnd, tp->snd_ssthresh>=0xFFFF?-1:tp->snd_ssthresh

Completed in 185 milliseconds