Home
last modified time | relevance | path

Searched refs:so_restrictions (Results 1 – 5 of 5) sorted by relevance

/xnu-12377.41.6/bsd/netinet/
H A Dmptcp.c1395 (mp_so->so_restrictions & SO_RESTRICT_DENY_EXPENSIVE)) { in mptcp_session_necp_cb()
1400 (mp_so->so_restrictions & SO_RESTRICT_DENY_CONSTRAINED)) { in mptcp_session_necp_cb()
1405 (mp_so->so_restrictions & SO_RESTRICT_DENY_CELLULAR)) { in mptcp_session_necp_cb()
1518 (mp_so->so_restrictions & SO_RESTRICT_DENY_EXPENSIVE)) { in mptcp_set_restrictions()
1523 (mp_so->so_restrictions & SO_RESTRICT_DENY_CONSTRAINED)) { in mptcp_set_restrictions()
1528 (mp_so->so_restrictions & SO_RESTRICT_DENY_CELLULAR)) { in mptcp_set_restrictions()
H A Din_pcb.c3285 if (so != NULL && !(so->so_restrictions & SO_RESTRICT_DENY_CELLULAR)) { in inp_clear_nocellular()
/xnu-12377.41.6/bsd/kern/
H A Duipc_socket.c878 if ((so->so_restrictions & SO_RESTRICT_DENY_IN) != 0) { in solisten()
1525 if ((so->so_restrictions & SO_RESTRICT_DENY_OUT) != 0) { in soconnectlock()
1662 if ((so->so_restrictions & SO_RESTRICT_DENY_OUT) != 0) { in soconnectxlocked()
7834 nocell_old = (so->so_restrictions & SO_RESTRICT_DENY_CELLULAR); in so_set_restrictions()
7835 noexpensive_old = (so->so_restrictions & SO_RESTRICT_DENY_EXPENSIVE); in so_set_restrictions()
7836 noconstrained_old = (so->so_restrictions & SO_RESTRICT_DENY_CONSTRAINED); in so_set_restrictions()
7837 so->so_restrictions |= (vals & (SO_RESTRICT_DENY_IN | in so_set_restrictions()
7840 nocell_new = (so->so_restrictions & SO_RESTRICT_DENY_CELLULAR); in so_set_restrictions()
7841 noexpensive_new = (so->so_restrictions & SO_RESTRICT_DENY_EXPENSIVE); in so_set_restrictions()
7842 noconstrained_new = (so->so_restrictions & SO_RESTRICT_DENY_CONSTRAINED); in so_set_restrictions()
[all …]
H A Duipc_socket2.c2719 !(so->so_restrictions & SO_RESTRICT_DENY_CELLULAR) && in soevent()
2720 !(so->so_restrictions & SO_RESTRICT_DENY_EXPENSIVE) && in soevent()
2721 !(so->so_restrictions & SO_RESTRICT_DENY_CONSTRAINED)) { in soevent()
/xnu-12377.41.6/bsd/sys/
H A Dsocketvar.h305 uint8_t so_restrictions; member