summaryrefslogtreecommitdiff
path: root/sys/netinet6/ip6_var.h
diff options
context:
space:
mode:
authorAlexander Bluhm <bluhm@cvs.openbsd.org>2017-03-03 15:48:03 +0000
committerAlexander Bluhm <bluhm@cvs.openbsd.org>2017-03-03 15:48:03 +0000
commitd089783796e16ef9fec09f9ecb411d35fbce74b2 (patch)
tree475918c5ee17f5b8d9a7ab822355e050a60b7f76 /sys/netinet6/ip6_var.h
parentdcfcb1baf5db36826bef379ef349e1fd43de7d0e (diff)
Convert the variable argument list of the pr_output functions to
fixed parameters. OK mpi@ claudio@ dhill@
Diffstat (limited to 'sys/netinet6/ip6_var.h')
-rw-r--r--sys/netinet6/ip6_var.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet6/ip6_var.h b/sys/netinet6/ip6_var.h
index 19a6d832004..70c57d70536 100644
--- a/sys/netinet6/ip6_var.h
+++ b/sys/netinet6/ip6_var.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip6_var.h,v 1.69 2017/02/28 09:59:34 mpi Exp $ */
+/* $OpenBSD: ip6_var.h,v 1.70 2017/03/03 15:48:02 bluhm Exp $ */
/* $KAME: ip6_var.h,v 1.33 2000/06/11 14:59:20 jinmei Exp $ */
/*
@@ -345,7 +345,8 @@ void rip6_init(void);
int rip6_input(struct mbuf **mp, int *offp, int proto);
void rip6_ctlinput(int, struct sockaddr *, u_int, void *);
int rip6_ctloutput(int, struct socket *, int, int, struct mbuf *);
-int rip6_output(struct mbuf *, ...);
+int rip6_output(struct mbuf *, struct socket *, struct sockaddr *,
+ struct mbuf *);
int rip6_usrreq(struct socket *,
int, struct mbuf *, struct mbuf *, struct mbuf *, struct proc *);
int rip6_sysctl(int *, u_int, void *, size_t *, void *, size_t);