Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_input.c311 uint32_t mss_max; in tcp_mss_set() local
316 mss_max = tcps->tcps_mss_max_ipv4; in tcp_mss_set()
318 mss_max = tcps->tcps_mss_max_ipv6; in tcp_mss_set()
322 if (mss > mss_max) in tcp_mss_set()
323 mss = mss_max; in tcp_mss_set()
537 uint32_t mss_max; in tcp_process_options() local
558 mss_max = tcps->tcps_mss_max_ipv4; in tcp_process_options()
560 mss_max = tcps->tcps_mss_max_ipv6; in tcp_process_options()
563 else if (tcpopt.tcp_opt_mss > mss_max) in tcp_process_options()
564 tcpopt.tcp_opt_mss = mss_max; in tcp_process_options()
H A Dtcp.c610 uint32_t mss_max; in tcp_set_destination() local
738 mss_max = tcps->tcps_mss_max_ipv4; in tcp_set_destination()
740 mss_max = tcps->tcps_mss_max_ipv6; in tcp_set_destination()
749 if (mss > mss_max) in tcp_set_destination()
750 mss = mss_max; in tcp_set_destination()
/illumos-gate/usr/src/stand/lib/tcp/
H A Dtcp.c2184 uint32_t mss_max; in tcp_mss_set() local
2186 mss_max = tcp_mss_max_ipv4; in tcp_mss_set()
2190 if (mss > mss_max) in tcp_mss_set()
2191 mss = mss_max; in tcp_mss_set()
2234 uint32_t mss_max; in tcp_process_options() local
2250 mss_max = tcp_mss_max_ipv4; in tcp_process_options()
2253 else if (tcpopt.tcp_opt_mss > mss_max) in tcp_process_options()
2254 tcpopt.tcp_opt_mss = mss_max; in tcp_process_options()