Home
last modified time | relevance | path

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

/xnu-11417.140.69/bsd/netinet/
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.c3108 if ((so->so_rcv.sb_flags & SB_USRSIZE) == 0) { in tcp_attach()
3111 if ((so->so_snd.sb_flags & SB_USRSIZE) == 0) { in tcp_attach()
H A Dtcp_subr.c3737 maxsockbufsize = ((so->so_rcv.sb_flags & SB_USRSIZE) != 0) ? in tcp_set_max_rwinscale()
/xnu-11417.140.69/bsd/sys/
H A Dsocketvar.h212 #define SB_USRSIZE 0x200 /* user specified sbreserve */ macro
/xnu-11417.140.69/bsd/kern/
H A Duipc_socket2.c418 so->so_rcv.sb_flags |= (head->so_rcv.sb_flags & SB_USRSIZE); in sonewconn_internal()
419 so->so_snd.sb_flags |= (head->so_snd.sb_flags & SB_USRSIZE); in sonewconn_internal()
H A Duipc_socket.c5021 sb->sb_flags |= SB_USRSIZE; in sosetoptlock()