Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/inet/tcp/
H A Dtcp_input.c192 uint32_t mss_max; in tcp_mss_set() local
197 mss_max = tcps->tcps_mss_max_ipv4; in tcp_mss_set()
199 mss_max = tcps->tcps_mss_max_ipv6; in tcp_mss_set()
203 if (mss > mss_max) in tcp_mss_set()
204 mss = mss_max; in tcp_mss_set()
405 uint32_t mss_max; in tcp_process_options() local
426 mss_max = tcps->tcps_mss_max_ipv4; in tcp_process_options()
428 mss_max = tcps->tcps_mss_max_ipv6; in tcp_process_options()
431 else if (tcpopt.tcp_opt_mss > mss_max) in tcp_process_options()
432 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_41/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()