Home
last modified time | relevance | path

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

/xnu-8020.140.41/bsd/netinet/
H A Dmptcp_usrreq.c197 if ((mp_so->so_rcv.sb_flags & SB_USRSIZE) == 0) { in mptcp_attach()
200 if ((mp_so->so_snd.sb_flags & SB_USRSIZE) == 0) { in mptcp_attach()
H A Dtcp_usrreq.c2967 if ((so->so_rcv.sb_flags & SB_USRSIZE) == 0) { in tcp_attach()
2970 if ((so->so_snd.sb_flags & SB_USRSIZE) == 0) { in tcp_attach()
H A Dtcp_subr.c3605 maxsockbufsize = ((so->so_rcv.sb_flags & SB_USRSIZE) != 0) ? in tcp_set_max_rwinscale()
/xnu-8020.140.41/bsd/sys/
H A Dsocketvar.h200 #define SB_USRSIZE 0x200 /* user specified sbreserve */ macro
/xnu-8020.140.41/bsd/kern/
H A Duipc_socket2.c415 so->so_rcv.sb_flags |= (head->so_rcv.sb_flags & SB_USRSIZE); in sonewconn_internal()
416 so->so_snd.sb_flags |= (head->so_snd.sb_flags & SB_USRSIZE); in sonewconn_internal()
H A Duipc_socket.c5169 sb->sb_flags |= SB_USRSIZE; in sosetoptlock()