Home
last modified time | relevance | path

Searched refs:offer (Results 1 – 4 of 4) sorted by relevance

/xnu-11215.61.5/bsd/netinet/
H A Dtcp_input.c6837 tcp_mss(struct tcpcb *tp, int offer, unsigned int input_ifscope) in tcp_mss() argument
6845 int origoffer = offer; in tcp_mss()
6889 if (offer == -1) { in tcp_mss()
6890 offer = rt->rt_rmx.rmx_filler[0]; in tcp_mss()
6896 if (offer == 0) { in tcp_mss()
6897 offer = isipv6 ? tcp_v6mssdflt : tcp_mssdflt; in tcp_mss()
6903 offer = max(offer, tcp_minmss); in tcp_mss()
6910 offer = max(offer, 64); in tcp_mss()
6912 rt->rt_rmx.rmx_filler[0] = offer; in tcp_mss()
6943 mss = min(mss, offer); in tcp_mss()
/xnu-11215.61.5/
H A DAPPLE_LICENSE94 Deploy, and You may not offer or impose any terms on such Source Code
169 6. Additional Terms. You may choose to offer, and to charge a fee for,
/xnu-11215.61.5/doc/scheduler/
H A Dsched_clutch_edge.md176 …* Efficiency cores offer meaningful performance uplift for benchmarks as well as throughput-orient…
/xnu-11215.61.5/bsd/net/
H A Dpf.c4322 pf_calc_mss(struct pf_addr *addr, sa_family_t af, u_int16_t offer) in pf_calc_mss() argument
4376 mss = min(mss, offer); in pf_calc_mss()