Lines Matching defs:mss
95 /* Round up the value to the nearest mss. */
96 #define MSS_ROUNDUP(value, mss) ((((value) - 1) / (mss) + 1) * (mss))
238 #define TCP_SET_INIT_CWND(tcp, mss, def_max_init_cwnd) \
242 (tcp)->tcp_cwnd = MIN(4 * (mss), \
243 MAX(2 * (mss), 4380 / (mss) * (mss))); \
245 (tcp)->tcp_cwnd = MIN(TCP_MAX_INIT_CWND * (mss),\
246 def_max_init_cwnd * (mss)); \
249 (tcp)->tcp_cwnd = (tcp)->tcp_init_cwnd * (mss); \