diff options
| author | Garrett Wollman <wollman@FreeBSD.org> | 1997-04-27 20:01:29 +0000 |
|---|---|---|
| committer | Garrett Wollman <wollman@FreeBSD.org> | 1997-04-27 20:01:29 +0000 |
| commit | a29f300e809cf6c0167aa2518e33d076f62db72f (patch) | |
| tree | 26f8f66c254e302cbdab8c0f5cb2d6ebb75bb38a /sys/netinet/in_proto.c | |
| parent | ee7877dfec86c65ee7af0a5c2b10112ce0d36485 (diff) | |
Notes
Diffstat (limited to 'sys/netinet/in_proto.c')
| -rw-r--r-- | sys/netinet/in_proto.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/netinet/in_proto.c b/sys/netinet/in_proto.c index b07d8a5da3dc..eeaf2f498028 100644 --- a/sys/netinet/in_proto.c +++ b/sys/netinet/in_proto.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)in_proto.c 8.2 (Berkeley) 2/9/95 - * $Id$ + * $Id: in_proto.c,v 1.38 1997/02/18 20:46:22 wollman Exp $ */ #include <sys/param.h> @@ -96,12 +96,14 @@ void iplinit(); extern struct domain inetdomain; +static struct pr_usrreqs nousrreqs; struct protosw inetsw[] = { { 0, &inetdomain, 0, 0, 0, 0, 0, 0, 0, - ip_init, 0, ip_slowtimo, ip_drain + ip_init, 0, ip_slowtimo, ip_drain, + &nousrreqs }, { SOCK_DGRAM, &inetdomain, IPPROTO_UDP, PR_ATOMIC|PR_ADDR, udp_input, 0, udp_ctlinput, ip_ctloutput, |
