Home
last modified time | relevance | path

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

/xnu-12377.41.6/bsd/netinet/
H A Dtcp_syncookie.c347 win = ((so->so_rcv.sb_flags & SB_USRSIZE) != 0) ? in syncookie_respond()
H A Dmptcp_usrreq.c194 if ((mp_so->so_rcv.sb_flags & SB_USRSIZE) == 0) { in mptcp_attach()
197 if ((mp_so->so_snd.sb_flags & SB_USRSIZE) == 0) { in mptcp_attach()
H A Dtcp_usrreq.c3105 if ((so->so_rcv.sb_flags & SB_USRSIZE) == 0) { in tcp_attach()
3108 if ((so->so_snd.sb_flags & SB_USRSIZE) == 0) { in tcp_attach()
H A Dtcp_subr.c3873 maxsockbufsize = ((so->so_rcv.sb_flags & SB_USRSIZE) != 0) ? in tcp_get_max_rwinscale()
/xnu-12377.41.6/bsd/sys/
H A Dsocketvar.h206 #define SB_USRSIZE 0x200 /* user specified sbreserve */ macro
/xnu-12377.41.6/bsd/kern/
H A Duipc_socket2.c420 so->so_rcv.sb_flags |= (head->so_rcv.sb_flags & SB_USRSIZE); in sonewconn_internal()
421 so->so_snd.sb_flags |= (head->so_snd.sb_flags & SB_USRSIZE); in sonewconn_internal()
H A Duipc_socket.c4875 sb->sb_flags |= SB_USRSIZE; in sosetoptlock()