Searched refs:tcp_cwnd (Results 1 - 10 of 10) sorted by relevance

/opensolaris-onvv-gate/usr/src/stand/lib/tcp/
H A Dtcp.c672 win_size = (tcp->tcp_swnd > tcp->tcp_cwnd) ? tcp->tcp_cwnd :
2176 * 1) Various stuffs, tcp_mss, tcp_cwnd, ... need to be adjusted when the
2216 tcp->tcp_cwnd = MIN(tcp_slow_start_initial * mss,
2543 * All holes are filled. Manipulate tcp_cwnd to send more
2544 * if we can. Note that after the SACK recovery, tcp_cwnd is
2550 tcp->tcp_cwnd = tcp->tcp_snxt - tcp->tcp_suna;
2551 assert(tcp->tcp_cwnd > 0);
2555 tcp->tcp_cwnd = tcp->tcp_snxt - tcp->tcp_suna +
2881 * Set tcp_cwnd bac
[all...]
H A Dtcp_inet.h130 uint32_t tcp_cwnd; /* Congestion window */ member in struct:tcp_s
/opensolaris-onvv-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_timers.c786 tcp->tcp_cwnd = tcp->tcp_mss;
817 if (tcp->tcp_cwnd == 0) {
819 * Set tcp_cwnd to 1 MSS so that a
825 tcp->tcp_cwnd = tcp->tcp_mss;
H A Dtcp_input.c223 * Update tcp_cwnd according to the new value of MSS. Keep the
226 tcp->tcp_cwnd = (tcp->tcp_cwnd / tcp->tcp_mss) * mss;
541 * Initialize tcp_cwnd value. After tcp_mss_set(), tcp_mss has been
755 * Adjust the tcp_mss and tcp_cwnd accordingly. We avoid
2535 * Set tcp_cwnd back to 1 MSS, per
2540 tcp->tcp_cwnd = tcp->tcp_mss;
3724 tcp->tcp_cwnd = mss;
3762 * set, reduce tcp_cwnd and tcp_ssthresh. But this should only be
3771 tcp->tcp_cwnd
[all...]
H A Dtcp_output.c393 if (tcp->tcp_cwnd == 0) {
395 * Note that tcp_cwnd is 0 before 3-way handshake is
439 if (tcp->tcp_swnd > tcp->tcp_cwnd)
440 usable_r -= tcp->tcp_swnd - tcp->tcp_cwnd;
1187 * Reinitialize tcp_cwnd after idle.
1196 if (usable > tcp->tcp_cwnd)
1197 usable = tcp->tcp_cwnd; /* congestion window smaller */
3359 * All holes are filled. Manipulate tcp_cwnd to send more
3360 * if we can. Note that after the SACK recovery, tcp_cwnd is
3366 tcp->tcp_cwnd
[all...]
H A Dtcp.c2089 DONTCARE(tcp->tcp_cwnd); /* Init in tcp_process_options */
/opensolaris-onvv-gate/usr/src/lib/libdtrace/common/
H A Dtcp.d.in242 tcps_cwnd = T ? T->tcp_cwnd : 0;
/opensolaris-onvv-gate/usr/src/uts/common/inet/
H A Dtcp_impl.h198 * should be 0 and we use the formula in RFC 3390 to set tcp_cwnd.
200 * it to calculate the tcp_cwnd.
205 (tcp)->tcp_cwnd = MIN(def_max_init_cwnd * (mss), \
208 (tcp)->tcp_cwnd = (tcp)->tcp_init_cwnd * (mss); \
H A Dtcp.h182 uint32_t tcp_cwnd; /* Congestion window */ member in struct:tcp_s
/opensolaris-onvv-gate/usr/src/uts/common/inet/nca/
H A Dnca.h1384 uint32_t tcp_cwnd; /* Congestion window */ member in struct:nca_conn_s

Completed in 206 milliseconds