Lines Matching defs:mss
391 * threshold to no less than 2*mss.
1691 uint16_t mss;
1694 mss = to.to_mss;
1697 mss = TCP6_MSS;
1699 mss = TCP_MSS;
1702 tcp_fastopen_update_cache(tp, mss,
3780 * If none, use an mss that can be handled on the outgoing interface
3802 int mss = 0;
3842 * No route to sender, stay with default mss and return.
3889 mss = min(metricptr->hc_mtu, maxmtu) - min_protoh;
3893 mss = maxmtu - min_protoh;
3896 mss = min(mss, V_tcp_v6mssdflt);
3904 mss = maxmtu - min_protoh;
3907 mss = min(mss, V_tcp_mssdflt);
3911 * XXX - The above conditional (mss = maxmtu - min_protoh)
3929 mss = min(mss, offer);
3939 mss = max(mss, 64);
3941 tp->t_maxseg = mss;
3958 int mss;
3970 mss = tp->t_maxseg;
3976 * Make the socket buffers an integral number of mss units;
3977 * if the mss is larger than the socket buffer, decrease the mss.
3985 if (bufsize < mss)
3986 mss = bufsize;
3988 bufsize = roundup(bufsize, mss);
4003 tp->t_maxseg = max(mss, 64);
4020 if (bufsize > mss) {
4021 bufsize = roundup(bufsize, mss);
4046 int mss = 0;
4055 mss = V_tcp_v6mssdflt;
4065 mss = V_tcp_mssdflt;
4075 mss = min(maxmtu, thcmtu) - min_protoh;
4077 mss = max(maxmtu, thcmtu) - min_protoh;
4079 return (mss);