summaryrefslogtreecommitdiffstats
path: root/sys/netinet6/in6_proto.c
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2008-05-06 08:47:35 +0000
committermarkus <markus@openbsd.org>2008-05-06 08:47:35 +0000
commit598d9f0e696e6e427d2bc4b26b4941a4a202c7c4 (patch)
tree110b900ba52cb6fca02ad2acf6fb750263e966a6 /sys/netinet6/in6_proto.c
parentDrop all broadcast and multicast packets. (diff)
downloadwireguard-openbsd-598d9f0e696e6e427d2bc4b26b4941a4a202c7c4.tar.xz
wireguard-openbsd-598d9f0e696e6e427d2bc4b26b4941a4a202c7c4.zip
remove tcp_drain code since it's not longer used; ok henning, feedback thib
Diffstat (limited to 'sys/netinet6/in6_proto.c')
-rw-r--r--sys/netinet6/in6_proto.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet6/in6_proto.c b/sys/netinet6/in6_proto.c
index 387f80ca7ff..a74dd34b051 100644
--- a/sys/netinet6/in6_proto.c
+++ b/sys/netinet6/in6_proto.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: in6_proto.c,v 1.53 2007/12/14 18:33:41 deraadt Exp $ */
+/* $OpenBSD: in6_proto.c,v 1.54 2008/05/06 08:47:36 markus Exp $ */
/* $KAME: in6_proto.c,v 1.66 2000/10/10 15:35:47 itojun Exp $ */
/*
@@ -136,9 +136,9 @@ struct ip6protosw inet6sw[] = {
tcp6_input, 0, tcp6_ctlinput, tcp_ctloutput,
tcp6_usrreq,
#ifdef INET /* don't call initialization and timeout routines twice */
- 0, 0, 0, tcp_drain,
+ 0, 0, 0, 0,
#else
- tcp_init, tcp_fasttimo, tcp_slowtimo, tcp_drain,
+ tcp_init, tcp_fasttimo, tcp_slowtimo, 0,
#endif
tcp_sysctl,
},