summaryrefslogtreecommitdiff
path: root/sys/netinet6/ip6_input.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netinet6/ip6_input.c')
-rw-r--r--sys/netinet6/ip6_input.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/netinet6/ip6_input.c b/sys/netinet6/ip6_input.c
index 183d7807e81..b0c7b162471 100644
--- a/sys/netinet6/ip6_input.c
+++ b/sys/netinet6/ip6_input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip6_input.c,v 1.191 2017/05/29 14:36:22 mpi Exp $ */
+/* $OpenBSD: ip6_input.c,v 1.192 2017/05/30 07:50:37 mpi Exp $ */
/* $KAME: ip6_input.c,v 1.188 2001/03/29 05:34:31 itojun Exp $ */
/*
@@ -160,6 +160,12 @@ ip6_init(void)
ip6counters = counters_alloc(ip6s_ncounters);
}
+void
+ipv6_input(struct ifnet *ifp, struct mbuf *m)
+{
+ niq_enqueue(&ip6intrq, m);
+}
+
/*
* IP6 input interrupt handling. Just pass the packet to ip6_input.
*/