Lines Matching refs:mss
95 /* Round up the value to the nearest mss. */
96 #define MSS_ROUNDUP(value, mss) ((((value) - 1) / (mss) + 1) * (mss))
269 #define TCP_SET_INIT_CWND(tcp, mss, def_max_init_cwnd) \
273 (tcp)->tcp_cwnd = MIN(4 * (mss), \
274 MAX(2 * (mss), 4380 / (mss) * (mss))); \
276 (tcp)->tcp_cwnd = MIN(TCP_MAX_INIT_CWND * (mss),\
277 def_max_init_cwnd * (mss)); \
280 (tcp)->tcp_cwnd = (tcp)->tcp_init_cwnd * (mss); \