Home
last modified time | relevance | path

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

/xnu-8796.141.3/bsd/netinet/ !
H A Dtcp_input.c6475 tcp_mss(struct tcpcb *tp, int offer, unsigned int input_ifscope) in tcp_mss() argument
6483 int origoffer = offer; in tcp_mss()
6530 if (offer == -1) { in tcp_mss()
6531 offer = rt->rt_rmx.rmx_filler[0]; in tcp_mss()
6537 if (offer == 0) { in tcp_mss()
6538 offer = isipv6 ? tcp_v6mssdflt : tcp_mssdflt; in tcp_mss()
6544 offer = max(offer, tcp_minmss); in tcp_mss()
6551 offer = max(offer, 64); in tcp_mss()
6553 rt->rt_rmx.rmx_filler[0] = offer; in tcp_mss()
6585 mss = min(mss, offer); in tcp_mss()
/xnu-8796.141.3/ !
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-8796.141.3/doc/ !
H A Dsched_clutch_edge.md174 …* Efficiency cores offer meaningful performance uplift for benchmarks as well as throughput-orient…
/xnu-8796.141.3/bsd/net/ !
H A Dpf.c4284 pf_calc_mss(struct pf_addr *addr, sa_family_t af, u_int16_t offer) in pf_calc_mss() argument
4338 mss = min(mss, offer); in pf_calc_mss()