Searched refs:cwnd (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_input.c2326 uint32_t cwnd; local
3863 * If the cwnd is 0, use the timer to clock out
3946 * Adjust cwnd since the duplicate
4034 * cwnd.
4036 cwnd = tcp->tcp_cwnd + mss;
4037 if (cwnd > tcp->tcp_cwnd_max)
4038 cwnd = tcp->tcp_cwnd_max;
4039 tcp->tcp_cwnd = cwnd;
4270 cwnd = tcp->tcp_cwnd;
4273 if (cwnd >
[all...]
/illumos-gate/usr/src/stand/lib/tcp/
H A Dtcp.c148 /* TCP cwnd burst factor. */
671 /* window size = MIN(swnd, cwnd) - unacked bytes */
2208 * Initialize cwnd according to draft-floyd-incr-init-win-01.txt.
2210 * of the initial cwnd. Now, when tcp_slow_start_initial * mss
2211 * is smaller than the cwnd calculated from the formula suggested in
2212 * the draft, we use tcp_slow_start_initial * mss as the cwnd.
2213 * Otherwise, use the cwnd from the draft's formula. The default
2632 uint32_t cwnd; local
3442 * If the cwnd is 0, use the timer to clock out
3526 * Adjust cwnd sinc
[all...]
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/
H A Dlm_l4sp.c2298 ttcp_st->cwnd = tcp->tcp_delegated.send_cwin - tcp->tcp_delegated.send_una; /* i.e. ndis_tcp_delegated->CWnd */
2300 * doesn't wrap-around, configuring it to 0xffffffff may cause it to wrap around and then change from a very large cwnd to a ver
2301 * small one - we give 2^30 which is the largest cwnd that can be advertised. */
2302 if (ttcp_st->cwnd == 0xffffffff) {
2303 ttcp_st->cwnd = 0x40000000;
2523 * doesn't wrap-around, configuring it to 0xffffffff may cause it to wrap around and then change from a very large cwnd to a ver
2524 * small one - we give 2^30 which is the largest cwnd that can be advertised. */
5389 tcp->tcp_delegated.send_cwin = tst_tcp->cwnd + tcp->tcp_delegated.send_una;
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/fw/
H A D5710_hsi.h6738 u32_t cwnd /* Congestion window */; member in struct:tstorm_tcp_st_context_section

Completed in 151 milliseconds