Search | Google it | Results 1 - 1 of 1 for funcall:max from t2ex/bsd_source/t2ex/network/net/src_bsd/netinet/tcp_subr.c (0.00 seconds) |
2075: case AF_INET: 2076: mss = max(in_maxmtu, mss); 2077: break; 2079: case AF_INET6: 2080: mss = max(in6_maxmtu, mss); 2081: break; 2101: 2102: mss = max(tcp_mssdflt, mss); 2103: return (mss); 2155: mss = offer; 2156: mss = max(mss, 256); /* sanity */ 2157: tp->t_peermss = mss; 2200: */ 2201: tp->snd_ssthresh = max(2 * mss, rt->rt_rmx.rmx_ssthresh); 2202: }