Home
last modified time | relevance | path

Searched refs:mss_max (Results 1 – 3 of 3) sorted by relevance

/titanic_50/usr/src/uts/common/inet/tcp/
H A Dtcp_input.c182 uint32_t mss_max; in tcp_mss_set() local
187 mss_max = tcps->tcps_mss_max_ipv4; in tcp_mss_set()
189 mss_max = tcps->tcps_mss_max_ipv6; in tcp_mss_set()
193 if (mss > mss_max) in tcp_mss_set()
194 mss = mss_max; in tcp_mss_set()
408 uint32_t mss_max; in tcp_process_options() local
429 mss_max = tcps->tcps_mss_max_ipv4; in tcp_process_options()
431 mss_max = tcps->tcps_mss_max_ipv6; in tcp_process_options()
434 else if (tcpopt.tcp_opt_mss > mss_max) in tcp_process_options()
435 tcpopt.tcp_opt_mss = mss_max; in tcp_process_options()
H A Dtcp.c610 uint32_t mss_max; in tcp_set_destination() local
744 mss_max = tcps->tcps_mss_max_ipv4; in tcp_set_destination()
746 mss_max = tcps->tcps_mss_max_ipv6; in tcp_set_destination()
755 if (mss > mss_max) in tcp_set_destination()
756 mss = mss_max; in tcp_set_destination()
/titanic_50/usr/src/stand/lib/tcp/
H A Dtcp.c2185 uint32_t mss_max; in tcp_mss_set() local
2187 mss_max = tcp_mss_max_ipv4; in tcp_mss_set()
2191 if (mss > mss_max) in tcp_mss_set()
2192 mss = mss_max; in tcp_mss_set()
2235 uint32_t mss_max; in tcp_process_options() local
2251 mss_max = tcp_mss_max_ipv4; in tcp_process_options()
2254 else if (tcpopt.tcp_opt_mss > mss_max) in tcp_process_options()
2255 tcpopt.tcp_opt_mss = mss_max; in tcp_process_options()