aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ipsec.h
diff options
context:
space:
mode:
authorMartin Mathieson <martin.mathieson@keysight.com>2021-02-10 12:03:12 +0000
committerMartin Mathieson <martin.mathieson@keysight.com>2021-02-10 12:03:12 +0000
commit52163d05ba9d5f1d1bbbbaf0cc3be232b4c91092 (patch)
tree9bdbba1696b772befdee27a2756042e3c09da16f /epan/dissectors/packet-ipsec.h
parent259134b406f7544140c807af9572e4d92b795d92 (diff)
IPSec: add comments to ESP key-setting function.
Diffstat (limited to 'epan/dissectors/packet-ipsec.h')
-rw-r--r--epan/dissectors/packet-ipsec.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ipsec.h b/epan/dissectors/packet-ipsec.h
index c37072231e..1170ea5d54 100644
--- a/epan/dissectors/packet-ipsec.h
+++ b/epan/dissectors/packet-ipsec.h
@@ -19,7 +19,9 @@
added through the UAT entry interface/file. */
WS_DLL_PUBLIC void esp_sa_record_add_from_dissector(guint8 protocol, const gchar *srcIP, const char *dstIP,
gchar *spi,
- guint8 encryption_algo, const gchar *encryption_key,
- guint8 authentication_algo, const gchar *authentication_key);
+ guint8 encryption_algo, /* values from esp_encryption_type_vals */
+ const gchar *encryption_key,
+ guint8 authentication_algo, /* values from esp_authentication_type_vals */
+ const gchar *authentication_key);
#endif