X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/de355530ae67247cbd0da700edb3a2a1dae884c2..0c530ab8987f0ae6a1a3d9284f40182b88852816:/bsd/kern/uipc_proto.c diff --git a/bsd/kern/uipc_proto.c b/bsd/kern/uipc_proto.c index 1d31b684a..6fd419ddd 100644 --- a/bsd/kern/uipc_proto.c +++ b/bsd/kern/uipc_proto.c @@ -75,22 +75,29 @@ extern struct domain localdomain; /* or at least forward */ static struct protosw localsw[] = { { SOCK_STREAM, &localdomain, 0, PR_CONNREQUIRED|PR_WANTRCVD|PR_RIGHTS, - 0, 0, 0, 0, + 0, 0, 0, uipc_ctloutput, 0, 0, 0, 0, 0, - 0, &uipc_usrreqs + 0, + &uipc_usrreqs, + 0, 0, 0 + }, { SOCK_DGRAM, &localdomain, 0, PR_ATOMIC|PR_ADDR|PR_RIGHTS, - 0, 0, 0, 0, + 0, 0, 0, uipc_ctloutput, 0, 0, 0, 0, 0, - 0, &uipc_usrreqs + 0, + &uipc_usrreqs, + 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, raw_ctlinput, 0, 0, - raw_init, 0, 0, 0, - 0, &raw_usrreqs + 0, 0, 0, 0, + 0, + &raw_usrreqs, + 0, 0, 0 } };