Home
last modified time | relevance | path

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

/xnu-11417.101.15/bsd/netinet/
H A Dtcp_timer.c940 optlen = tp->t_maxopd - tp->t_maxseg; in tcp_pmtud_revert_segment_size()
941 tp->t_maxopd = tp->t_pmtud_saved_maxopd; in tcp_pmtud_revert_segment_size()
942 tp->t_maxseg = tp->t_maxopd - optlen; in tcp_pmtud_revert_segment_size()
968 if (tp->t_maxopd > tcp_pmtud_black_hole_mss) { in tcp_pmtud_black_holed_next_mss()
1313 optlen = tp->t_maxopd - tp->t_maxseg; in tcp_timers()
1315 tp->t_pmtud_saved_maxopd = tp->t_maxopd; in tcp_timers()
1321 tp->t_maxopd = tcp_pmtud_black_holed_next_mss(tp); in tcp_timers()
1322 tp->t_maxseg = tp->t_maxopd - optlen; in tcp_timers()
2935 optlen = tp->t_maxopd - tp->t_maxseg; in tcp_update_mss_core()
2940 tp->t_maxopd < tp->t_cached_maxopd) { in tcp_update_mss_core()
[all …]
H A Dtcp_var.h451 uint32_t t_maxopd; /* mss plus options */ member
1149 u_int t_maxopd; /* mss plus options */ member
1563 u_int t_maxopd; /* mss plus options */ member
1646 u_int t_maxopd; /* mss plus options */ member
H A Dtcp_subr.c1128 tp->t_maxseg = tp->t_maxopd = isipv6 ? tcp_v6mssdflt : tcp_mssdflt; in tcp_newtcpcb()
1938 otp->t_maxopd = tp->t_maxopd; in tcpcb_to_otcpcb()
2122 otp->t_maxopd = tp->t_maxopd; in tcpcb_to_xtcpcb64()
2915 tp->t_maxopd = tp->t_maxseg = in tcp_mtudisc()
2938 if (tp->t_maxopd) { in tcp_mtudisc()
2939 mss = min(mss, tp->t_maxopd); in tcp_mtudisc()
2958 if (tp->t_maxopd <= mss) { in tcp_mtudisc()
2961 tp->t_maxopd = mss; in tcp_mtudisc()
H A Dtcp_output.c372 if (so->so_snd.sb_cc > (tp->t_maxopd - MAX_TCPOPTLEN)) { in tcp_tfo_check()
2360 if (len + optlen + ipoptlen > tp->t_maxopd) { in tcp_output()
2380 if (len % (tp->t_maxopd - optlen) != 0) { in tcp_output()
2381 len = len - (len % (tp->t_maxopd - optlen)); in tcp_output()
2385 len = tp->t_maxopd - optlen - ipoptlen; in tcp_output()
2888 m->m_pkthdr.tso_segsz = (uint16_t)(tp->t_maxopd - optlen); in tcp_output()
H A Din_pcblist.c261 xt->t_maxopd = tp->t_maxopd; in tcpcb_to_xtcpcb_n()
H A Dmptcp_opt.c516 if ((len + optlen + dssoptlen) > tp->t_maxopd) { \ in mptcp_setup_opts()
519 tp->t_maxseg, tp->t_maxopd); \ in mptcp_setup_opts()
521 len = tp->t_maxopd - optlen - dssoptlen; \ in mptcp_setup_opts()
H A Dtcp_input.c6937 tp->t_maxopd = tp->t_maxseg = isipv6 ? tcp_v6mssdflt : tcp_mssdflt; in tcp_mss()
7018 tp->t_maxopd = mss; in tcp_mss()