summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorangelos <angelos@openbsd.org>2001-05-27 03:48:32 +0000
committerangelos <angelos@openbsd.org>2001-05-27 03:48:32 +0000
commitcb47643ef1c3856887f84a71d4690fc1f68bd473 (patch)
treed0fa9caa8f447554a3719df8467ffcf791d20492
parentChange prototype of ipsp_common_input_cb() to also accept a packet tag (diff)
downloadwireguard-openbsd-cb47643ef1c3856887f84a71d4690fc1f68bd473.tar.xz
wireguard-openbsd-cb47643ef1c3856887f84a71d4690fc1f68bd473.zip
Pass a NULL packet tag for now to ipsp_common_input_cb().
-rw-r--r--sys/netinet/ip_ah.c4
-rw-r--r--sys/netinet/ip_esp.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet/ip_ah.c b/sys/netinet/ip_ah.c
index bc2ca954399..9e3c0df70ec 100644
--- a/sys/netinet/ip_ah.c
+++ b/sys/netinet/ip_ah.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_ah.c,v 1.53 2001/05/17 18:41:46 provos Exp $ */
+/* $OpenBSD: ip_ah.c,v 1.54 2001/05/27 03:48:32 angelos Exp $ */
/*
* The authors of this code are John Ioannidis (ji@tla.org),
@@ -1208,7 +1208,7 @@ ah_output_cb(void *op)
FREE(ptr, M_XDATA);
crypto_freereq(crp);
- err = ipsp_process_done(m, tdb, tdb2);
+ err = ipsp_process_done(m, tdb, tdb2, NULL);
splx(s);
return err;
diff --git a/sys/netinet/ip_esp.c b/sys/netinet/ip_esp.c
index faedc72e53f..3577e6babad 100644
--- a/sys/netinet/ip_esp.c
+++ b/sys/netinet/ip_esp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_esp.c,v 1.59 2001/05/17 18:41:47 provos Exp $ */
+/* $OpenBSD: ip_esp.c,v 1.60 2001/05/27 03:48:34 angelos Exp $ */
/*
* The authors of this code are John Ioannidis (ji@tla.org),
@@ -663,7 +663,7 @@ esp_input_cb(void *op)
m_copyback(m, protoff, sizeof(u_int8_t), lastthree + 2);
/* Back to generic IPsec input processing */
- err = ipsec_common_input_cb(m, tdb, skip, protoff);
+ err = ipsec_common_input_cb(m, tdb, skip, protoff, NULL);
splx(s);
return err;