diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2017-01-25 17:34:32 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2017-01-25 17:34:32 +0000 |
commit | 759669db69ca341876a0af1e0abc98af49c4a3d8 (patch) | |
tree | be8139d53bbf33aefbe757800ac18ac4137c34b6 /sys/net/if_pfsync.h | |
parent | fb34f730610f368d97d9636e7f5714656e624c8c (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/net/if_pfsync.h')
-rw-r--r-- | sys/net/if_pfsync.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_pfsync.h b/sys/net/if_pfsync.h index 1d4b1049af9..2c31bc6c0ee 100644 --- a/sys/net/if_pfsync.h +++ b/sys/net/if_pfsync.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pfsync.h,v 1.49 2017/01/20 05:03:48 claudio Exp $ */ +/* $OpenBSD: if_pfsync.h,v 1.50 2017/01/25 17:34:31 bluhm Exp $ */ /* * Copyright (c) 2001 Michael Shalayeff @@ -286,7 +286,7 @@ struct pfsyncreq { #define PFSYNC_S_DEFER 0xfe #define PFSYNC_S_NONE 0xff -void pfsync_input(struct mbuf *, ...); +void pfsync_input(struct mbuf *, int, int); int pfsync_sysctl(int *, u_int, void *, size_t *, void *, size_t); |