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

/xnu-2422.115.4/bsd/netinet/
H A Dtcp_timer.c757 optlen = tp->t_maxopd - tp->t_maxseg;
759 tp->t_pmtud_saved_maxopd = tp->t_maxopd;
761 if (tp->t_maxopd > tcp_pmtud_black_hole_mss) {
762 tp->t_maxopd = tcp_pmtud_black_hole_mss;
764 tp->t_maxopd = /* use the default MSS */
770 tp->t_maxseg = tp->t_maxopd - optlen;
789 optlen = tp->t_maxopd - tp->t_maxseg;
790 tp->t_maxopd = tp->t_pmtud_saved_maxopd;
791 tp->t_maxseg = tp->t_maxopd - optlen;
H A Dtcp_var.h282 u_int t_maxopd; /* mss plus options */ member in struct:tcpcb
678 u_int t_maxopd; /* mss plus options */ member in struct:otcpcb
951 u_int t_maxopd; /* mss plus options */ member in struct:xtcpcb64
1033 u_int t_maxopd; /* mss plus options */ member in struct:xtcpcb_n
H A Din_pcblist.c225 xt->t_maxopd = tp->t_maxopd;
H A Dtcp_subr.c863 tp->t_maxseg = tp->t_maxopd =
1369 otp->t_maxopd = tp->t_maxopd;
1551 otp->t_maxopd = tp->t_maxopd;
2068 tp->t_maxopd = tp->t_maxseg =
2114 if (tp->t_maxopd <= mss)
2116 tp->t_maxopd = mss;
H A Dtcp_output.c1355 * bump the packet length beyond the t_maxopd length.
1366 if (len + optlen + ipoptlen > tp->t_maxopd) {
1378 len = len - (len % (tp->t_maxopd - optlen));
1383 len = tp->t_maxopd - optlen - ipoptlen;
1786 m->m_pkthdr.tso_segsz = tp->t_maxopd - optlen;
H A Dmptcp_opt.c570 if ((datalen + optlen + len) > tp->t_maxopd) { \
574 tp->t_maxseg, tp->t_maxopd); \
576 datalen = tp->t_maxopd - optlen - len; \
H A Dtcp_input.c4752 tp->t_maxopd = tp->t_maxseg =
4842 tp->t_maxopd = mss;

Completed in 52 milliseconds