diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2020-03-08 13:28:17 +0100 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2020-03-08 13:41:07 +0100 |
commit | 8c88f9f54a37bd257471d72d78fc7e211113495d (patch) | |
tree | f90a0c5ca260744d059de2831fe3315ea14387cd /netdissect.h | |
parent | 19a7707e79c1b3191ada3725f69cfd6c640cfb5c (diff) | |
download | tcpdump-8c88f9f54a37bd257471d72d78fc7e211113495d.tar.gz |
ESP: Rename two printers
Rename esp_print_decodesecret() to esp_decodesecret_print() and
esp_print_decrypt_buffer_by_ikev2() to esp_decrypt_buffer_by_ikev2_print()
with _print suffix like in most similar cases.
Diffstat (limited to 'netdissect.h')
-rw-r--r-- | netdissect.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/netdissect.h b/netdissect.h index 620c9a11..01cc60bb 100644 --- a/netdissect.h +++ b/netdissect.h @@ -740,8 +740,8 @@ extern const char *dnnum_string(netdissect_options *, u_short); extern int decode_prefix4(netdissect_options *, const u_char *, u_int, char *, size_t); extern int decode_prefix6(netdissect_options *, const u_char *, u_int, char *, size_t); -extern void esp_print_decodesecret(netdissect_options *); -extern int esp_print_decrypt_buffer_by_ikev2(netdissect_options *, int, +extern void esp_decodesecret_print(netdissect_options *); +extern int esp_decrypt_buffer_by_ikev2_print(netdissect_options *, int, const u_char spii[8], const u_char spir[8], const u_char *, const u_char *); |