diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2008-05-24 19:48:33 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2008-05-24 19:48:33 +0000 |
commit | 1253b7d2d25cd9bfbba59b451260cf9e1ce478dd (patch) | |
tree | 8ce714306f7f49a5396e765f7c396bf2be33e64d /sys/netinet6/in6_proto.c | |
parent | ec8b8e37b2177d2b6911ecc80da5c5211d200380 (diff) |
Remove {tcp/udp}6_usrreq(); Since the normal ones now
take a proc argument, theres no need for these, since
they are just wrappers.
OK claudio@
Diffstat (limited to 'sys/netinet6/in6_proto.c')
-rw-r--r-- | sys/netinet6/in6_proto.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet6/in6_proto.c b/sys/netinet6/in6_proto.c index a74dd34b051..8c2f41fab16 100644 --- a/sys/netinet6/in6_proto.c +++ b/sys/netinet6/in6_proto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in6_proto.c,v 1.54 2008/05/06 08:47:36 markus Exp $ */ +/* $OpenBSD: in6_proto.c,v 1.55 2008/05/24 19:48:32 thib Exp $ */ /* $KAME: in6_proto.c,v 1.66 2000/10/10 15:35:47 itojun Exp $ */ /* @@ -128,13 +128,13 @@ struct ip6protosw inet6sw[] = { }, { SOCK_DGRAM, &inet6domain, IPPROTO_UDP, PR_ATOMIC|PR_ADDR, udp6_input, 0, udp6_ctlinput, ip6_ctloutput, - udp6_usrreq, 0, + udp_usrreq, 0, 0, 0, 0, udp_sysctl, }, { SOCK_STREAM, &inet6domain, IPPROTO_TCP, PR_CONNREQUIRED|PR_WANTRCVD|PR_ABRTACPTDIS, tcp6_input, 0, tcp6_ctlinput, tcp_ctloutput, - tcp6_usrreq, + tcp_usrreq, #ifdef INET /* don't call initialization and timeout routines twice */ 0, 0, 0, 0, #else |