summaryrefslogtreecommitdiff
path: root/sys/netinet/ip_icmp.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_icmp.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_icmp.h')
-rw-r--r--sys/netinet/ip_icmp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_icmp.h b/sys/netinet/ip_icmp.h
index fcee2b11d9b..54fed25106f 100644
--- a/sys/netinet/ip_icmp.h
+++ b/sys/netinet/ip_icmp.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_icmp.h,v 1.27 2016/03/07 19:33:26 mmcc Exp $ */
+/* $OpenBSD: ip_icmp.h,v 1.28 2017/01/25 17:34:31 bluhm Exp $ */
/* $NetBSD: ip_icmp.h,v 1.10 1996/02/13 23:42:28 christos Exp $ */
/*
@@ -232,7 +232,7 @@ struct icmp_ext_obj_hdr {
struct mbuf *
icmp_do_error(struct mbuf *, int, int, u_int32_t, int);
void icmp_error(struct mbuf *, int, int, u_int32_t, int);
-void icmp_input(struct mbuf *, ...);
+void icmp_input(struct mbuf *, int, int);
void icmp_init(void);
int icmp_reflect(struct mbuf *, struct mbuf **, struct in_ifaddr *);
void icmp_send(struct mbuf *, struct mbuf *);