Searched defs:cwnd (Results 1 - 3 of 3) 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/fw/
H A D5710_hsi.h6738 u32_t cwnd /* Congestion window */; member in struct:tstorm_tcp_st_context_section

Completed in 289 milliseconds