diff options
author | 2000-01-15 19:37:28 +0000 | |
---|---|---|
committer | 2000-01-15 19:37:28 +0000 | |
commit | 54aafc027aaaeb947f805206a6b4bd1a6fa3fb2d (patch) | |
tree | 6e2b7de5e60445eb47ce039d7f24ee4a816b4c95 | |
parent | PRU_DETACH does not return ENOTCONN. If ipxp is NULL, EINVAL will be (diff) | |
download | wireguard-openbsd-54aafc027aaaeb947f805206a6b4bd1a6fa3fb2d.tar.xz wireguard-openbsd-54aafc027aaaeb947f805206a6b4bd1a6fa3fb2d.zip |
Add function prototype.
-rw-r--r-- | sys/netinet/ipsec_input.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/netinet/ipsec_input.c b/sys/netinet/ipsec_input.c index 420cf31604b..f6fcbf6704b 100644 --- a/sys/netinet/ipsec_input.c +++ b/sys/netinet/ipsec_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsec_input.c,v 1.14 2000/01/15 18:27:51 angelos Exp $ */ +/* $OpenBSD: ipsec_input.c,v 1.15 2000/01/15 19:37:28 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -79,6 +79,8 @@ #include "bpfilter.h" +int ipsec_common_input(struct mbuf **, int, int, int, int); + extern struct enc_softc encif[]; #ifdef ENCDEBUG @@ -91,6 +93,7 @@ extern struct enc_softc encif[]; #define offsetof(s, e) ((int)&((s *)0)->e) #endif +/* sysctl variables */ int esp_enable = 0; int ah_enable = 0; |