Home
last modified time | relevance | path

Searched refs:PR_CONNREQUIRED (Results 1 – 12 of 12) sorted by relevance

/f-stack/freebsd/netgraph/bluetooth/socket/
H A Dng_btsocket.c194 .pr_flags = PR_ATOMIC|PR_CONNREQUIRED,
203 .pr_flags = PR_CONNREQUIRED,
212 .pr_flags = PR_ATOMIC|PR_CONNREQUIRED,
/f-stack/freebsd/netinet/
H A Dsctp_module.c62 .pr_flags = PR_CONNREQUIRED|PR_WANTRCVD|PR_LASTHDR,
90 .pr_flags = PR_CONNREQUIRED|PR_WANTRCVD|PR_LASTHDR,
H A Din_proto.c135 .pr_flags = PR_CONNREQUIRED|PR_IMPLOPCL|PR_WANTRCVD,
161 .pr_flags = PR_CONNREQUIRED|PR_WANTRCVD|PR_LASTHDR,
/f-stack/freebsd/netinet6/
H A Din6_proto.c170 .pr_flags = PR_CONNREQUIRED|PR_IMPLOPCL|PR_WANTRCVD|PR_LISTEN,
200 .pr_flags = PR_CONNREQUIRED|PR_WANTRCVD|PR_LASTHDR,
/f-stack/tools/compat/include/sys/
H A Dprotosw.h117 #define PR_CONNREQUIRED 0x04 /* connection required by protocol */ macro
H A Dsocketvar.h280 ((so)->so_proto->pr_flags&PR_CONNREQUIRED)==0)) || \
/f-stack/freebsd/sys/
H A Dprotosw.h119 #define PR_CONNREQUIRED 0x04 /* connection required by protocol */ macro
H A Dsocketvar.h280 ((so)->so_proto->pr_flags&PR_CONNREQUIRED)==0)) || \
/f-stack/freebsd/kern/
H A Duipc_debug.c284 if (pr_flags & PR_CONNREQUIRED) { in db_print_prflags()
H A Duipc_socket.c1328 ((so->so_proto->pr_flags & PR_CONNREQUIRED) ||
1430 if ((so->so_proto->pr_flags & PR_CONNREQUIRED) &&
1439 if (so->so_proto->pr_flags & PR_CONNREQUIRED)
1635 if ((so->so_proto->pr_flags & PR_CONNREQUIRED) &&
1645 if (so->so_proto->pr_flags & PR_CONNREQUIRED)
1988 (so->so_proto->pr_flags & PR_CONNREQUIRED) != 0) {
2652 KASSERT((so->so_proto->pr_flags & PR_CONNREQUIRED) == 0,
3886 (so->so_proto->pr_flags & PR_CONNREQUIRED))
H A Duipc_usrreq.c431 .pr_flags = PR_CONNREQUIRED|PR_WANTRCVD|PR_RIGHTS,
451 .pr_flags = PR_ADDR|PR_ATOMIC|PR_CONNREQUIRED|PR_WANTRCVD|
1558 connreq = (so->so_proto->pr_flags & PR_CONNREQUIRED) != 0; in unp_connectat()
H A Duipc_syscalls.c620 } else if (so1->so_proto->pr_flags & PR_CONNREQUIRED) { in kern_socketpair()