Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_input.c405 tcpopt->tcp_opt_mss = mss; in tcp_parse_options()
577 tcpopt.tcp_opt_mss = tcps->tcps_mss_def_ipv4; in tcp_process_options()
579 tcpopt.tcp_opt_mss = tcps->tcps_mss_def_ipv6; in tcp_process_options()
585 if (tcpopt.tcp_opt_mss < tcps->tcps_mss_min) in tcp_process_options()
586 tcpopt.tcp_opt_mss = tcps->tcps_mss_min; in tcp_process_options()
587 else if (tcpopt.tcp_opt_mss > mss_max) in tcp_process_options()
588 tcpopt.tcp_opt_mss = mss_max; in tcp_process_options()
681 tcpopt.tcp_opt_mss -= connp->conn_ht_iphc_len + in tcp_process_options()
697 tcp_mss_set(tcp, MIN(tcpopt.tcp_opt_mss, tcp->tcp_mss)); in tcp_process_options()
/illumos-gate/usr/src/stand/lib/tcp/
H A Dtcp.c106 uint32_t tcp_opt_mss; member
2050 tcpopt->tcp_opt_mss = mss; in tcp_parse_options()
2247 tcpopt.tcp_opt_mss = tcp_mss_def_ipv4; in tcp_process_options()
2251 if (tcpopt.tcp_opt_mss < tcp_mss_min) in tcp_process_options()
2252 tcpopt.tcp_opt_mss = tcp_mss_min; 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()
2341 tcpopt.tcp_opt_mss -= tcp->tcp_hdr_len - in tcp_process_options()
2355 tcp_mss_set(tcp, MIN(tcpopt.tcp_opt_mss, tcp->tcp_mss)); in tcp_process_options()
/illumos-gate/usr/src/uts/common/inet/
H A Dtcp_impl.h309 uint32_t tcp_opt_mss; member