Searched refs:t_maxopd (Results 1 - 6 of 6) sorted by relevance

/darwin-on-arm/xnu/bsd/netinet/
H A Dtcp_timer.c668 optlen = tp->t_maxopd - tp->t_maxseg;
669 tp->t_pmtud_saved_maxopd = tp->t_maxopd; /* Keep track of previous MSS */
670 if (tp->t_maxopd > tcp_pmtud_black_hole_mss)
671 tp->t_maxopd = tcp_pmtud_black_hole_mss; /* Reduce the MSS to intermediary value */
673 tp->t_maxopd = /* use the default MSS */
679 tp->t_maxseg = tp->t_maxopd - optlen;
697 optlen = tp->t_maxopd - tp->t_maxseg;
698 tp->t_maxopd = tp->t_pmtud_saved_maxopd;
699 tp->t_maxseg = tp->t_maxopd - optlen;
H A Dtcp_var.h258 u_int t_maxopd; /* mss plus options */ member in struct:tcpcb
576 u_int t_maxopd; /* mss plus options */ member in struct:otcpcb
814 u_int t_maxopd; /* mss plus options */ member in struct:xtcpcb64
897 u_int t_maxopd; /* mss plus options */ member in struct:xtcpcb_n
H A Din_pcblist.c224 xt->t_maxopd = tp->t_maxopd;
H A Dtcp_subr.c848 tp->t_maxseg = tp->t_maxopd =
1337 otp->t_maxopd = tp->t_maxopd;
1523 otp->t_maxopd = tp->t_maxopd;
2039 tp->t_maxopd = tp->t_maxseg =
2085 if (tp->t_maxopd <= mss)
2087 tp->t_maxopd = mss;
H A Dtcp_output.c1248 * bump the packet length beyond the t_maxopd length.
1259 if (len + optlen + ipoptlen > tp->t_maxopd) {
1271 len = len - (len % (tp->t_maxopd - optlen));
1276 len = tp->t_maxopd - optlen - ipoptlen;
1616 m->m_pkthdr.tso_segsz = tp->t_maxopd - optlen;
H A Dtcp_input.c4395 tp->t_maxopd = tp->t_maxseg =
4485 tp->t_maxopd = mss;

Completed in 67 milliseconds