Home
last modified time | relevance | path

Searched refs:t_maxopd (Results 1 – 7 of 7) sorted by relevance

/xnu-8020.101.4/bsd/netinet/
H A Dtcp_timer.c928 optlen = tp->t_maxopd - tp->t_maxseg; in tcp_pmtud_revert_segment_size()
929 tp->t_maxopd = tp->t_pmtud_saved_maxopd; in tcp_pmtud_revert_segment_size()
930 tp->t_maxseg = tp->t_maxopd - optlen; in tcp_pmtud_revert_segment_size()
956 if (tp->t_maxopd > tcp_pmtud_black_hole_mss) { in tcp_pmtud_black_holed_next_mss()
1290 optlen = tp->t_maxopd - tp->t_maxseg; in tcp_timers()
1292 tp->t_pmtud_saved_maxopd = tp->t_maxopd; in tcp_timers()
1298 tp->t_maxopd = tcp_pmtud_black_holed_next_mss(tp); in tcp_timers()
1299 tp->t_maxseg = tp->t_maxopd - optlen; in tcp_timers()
2915 optlen = tp->t_maxopd - tp->t_maxseg; in tcp_update_mss_core()
2920 tp->t_maxopd < tp->t_cached_maxopd) { in tcp_update_mss_core()
[all …]
H A Dtcp_var.h345 uint32_t t_maxopd; /* mss plus options */ member
923 u_int t_maxopd; /* mss plus options */ member
1322 u_int t_maxopd; /* mss plus options */ member
1405 u_int t_maxopd; /* mss plus options */ member
H A Dtcp_output.c351 if (so->so_snd.sb_cc > (tp->t_maxopd - MAX_TCPOPTLEN)) { in tcp_tfo_check()
1942 if (len + optlen + ipoptlen > tp->t_maxopd) { in tcp_output()
1962 if (len % (tp->t_maxopd - optlen) != 0) { in tcp_output()
1963 len = len - (len % (tp->t_maxopd - optlen)); in tcp_output()
1967 len = tp->t_maxopd - optlen - ipoptlen; in tcp_output()
2396 m->m_pkthdr.tso_segsz = tp->t_maxopd - optlen; in tcp_output()
H A Dtcp_subr.c1098 tp->t_maxseg = tp->t_maxopd = isipv6 ? tcp_v6mssdflt : tcp_mssdflt; in tcp_newtcpcb()
1871 otp->t_maxopd = tp->t_maxopd; in tcpcb_to_otcpcb()
2055 otp->t_maxopd = tp->t_maxopd; in tcpcb_to_xtcpcb64()
2837 tp->t_maxopd = tp->t_maxseg = in tcp_mtudisc()
2858 if (tp->t_maxopd) { in tcp_mtudisc()
2859 mss = min(mss, tp->t_maxopd); in tcp_mtudisc()
2878 if (tp->t_maxopd <= mss) { in tcp_mtudisc()
2881 tp->t_maxopd = mss; in tcp_mtudisc()
H A Din_pcblist.c242 xt->t_maxopd = tp->t_maxopd; in tcpcb_to_xtcpcb_n()
H A Dmptcp_opt.c529 if ((len + optlen + dssoptlen) > tp->t_maxopd) { \ in mptcp_setup_opts()
532 tp->t_maxseg, tp->t_maxopd); \ in mptcp_setup_opts()
534 len = tp->t_maxopd - optlen - dssoptlen; \ in mptcp_setup_opts()
H A Dtcp_input.c6210 tp->t_maxopd = tp->t_maxseg = isipv6 ? tcp_v6mssdflt : tcp_mssdflt; in tcp_mss()
6292 tp->t_maxopd = mss; in tcp_mss()