diff options
author | 2013-04-11 12:06:25 +0000 | |
---|---|---|
committer | 2013-04-11 12:06:25 +0000 | |
commit | 331bae3d12d906842824c2fc6ea41311c76fcf0f (patch) | |
tree | 9cb1864769febad1f36bae8a3e0752d005f45c8b /sys/netinet/ip_esp.c | |
parent | Merge usbd_ar_pipe in usbd_abort_pipe, no functional change. (diff) | |
download | wireguard-openbsd-331bae3d12d906842824c2fc6ea41311c76fcf0f.tar.xz wireguard-openbsd-331bae3d12d906842824c2fc6ea41311c76fcf0f.zip |
Remove the extern keyword from function declarations, document
sysctl declarations, move variables and functions used in only
one place in their corresponding file. No functional change.
No objection from markus@, ok mikeb@
Diffstat (limited to 'sys/netinet/ip_esp.c')
-rw-r--r-- | sys/netinet/ip_esp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/netinet/ip_esp.c b/sys/netinet/ip_esp.c index 8bc543d8b9d..a07d88142d8 100644 --- a/sys/netinet/ip_esp.c +++ b/sys/netinet/ip_esp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_esp.c,v 1.121 2013/02/14 16:22:34 mikeb Exp $ */ +/* $OpenBSD: ip_esp.c,v 1.122 2013/04/11 12:06:25 mpi Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -76,6 +76,9 @@ #include "bpfilter.h" +int esp_output_cb(void *); +int esp_input_cb(void *); + #ifdef ENCDEBUG #define DPRINTF(x) if (encdebug) printf x #else |