summaryrefslogtreecommitdiff
path: root/sys/netinet/ip_ether.h
diff options
context:
space:
mode:
authorAlexander Bluhm <bluhm@cvs.openbsd.org>2017-01-25 17:34:32 +0000
committerAlexander Bluhm <bluhm@cvs.openbsd.org>2017-01-25 17:34:32 +0000
commit759669db69ca341876a0af1e0abc98af49c4a3d8 (patch)
treebe8139d53bbf33aefbe757800ac18ac4137c34b6 /sys/netinet/ip_ether.h
parentfb34f730610f368d97d9636e7f5714656e624c8c (diff)
Since raw_input() and route_input() are gone from pr_input, we can
make the variable parameters of the protocol input functions fixed. Also add the proto to make it similar to IPv6. OK mpi@ guenther@ millert@
Diffstat (limited to 'sys/netinet/ip_ether.h')
-rw-r--r--sys/netinet/ip_ether.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_ether.h b/sys/netinet/ip_ether.h
index d25b6254d68..4aa03c15f7c 100644
--- a/sys/netinet/ip_ether.h
+++ b/sys/netinet/ip_ether.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_ether.h,v 1.18 2014/07/14 12:18:30 deraadt Exp $ */
+/* $OpenBSD: ip_ether.h,v 1.19 2017/01/25 17:34:31 bluhm Exp $ */
/*
* The author of this code is Angelos D. Keromytis (angelos@adk.gr)
*
@@ -72,7 +72,7 @@ struct etherip_header {
struct tdb;
int etherip_output(struct mbuf *, struct tdb *, struct mbuf **, int);
-void etherip_input(struct mbuf *, ...);
+void etherip_input(struct mbuf *, int, int);
#ifdef INET6
int etherip_input6(struct mbuf **, int *, int);
#endif