aboutsummaryrefslogtreecommitdiffstats
path: root/epan/print.h
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2022-10-03 18:22:35 +0100
committerJoão Valverde <j@v6e.pt>2022-10-08 12:39:04 +0100
commit9ab1f35641d7d591dcf0cd5573f7f6770764a936 (patch)
treedf7a31ee4eaded924b6f747d272278a61ece7512 /epan/print.h
parent05a32852a061de661daae01687bda671253b8a2e (diff)
Move print_hex_data_buffer() to wsutil
Move this generic function to wsutil so it can be used by other libraries.
Diffstat (limited to 'epan/print.h')
-rw-r--r--epan/print.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/epan/print.h b/epan/print.h
index 7b31b0f9a0..9473611cd3 100644
--- a/epan/print.h
+++ b/epan/print.h
@@ -82,17 +82,6 @@ WS_DLL_PUBLIC gboolean proto_tree_print(print_dissections_e print_dissections,
print_stream_t *stream);
/*
- * Hexdump options for ASCII:
- */
-
-#define HEXDUMP_ASCII_MASK (0x0003U)
-#define HEXDUMP_ASCII_OPTION(option) ((option) & HEXDUMP_ASCII_MASK)
-
-#define HEXDUMP_ASCII_INCLUDE (0x0000U) /* include ASCII section no delimiters (legacy tshark behavior) */
-#define HEXDUMP_ASCII_DELIMIT (0x0001U) /* include ASCII section with delimiters, useful for reliable detection of last hexdata */
-#define HEXDUMP_ASCII_EXCLUDE (0x0002U) /* exclude ASCII section from hexdump reports, if we really don't want or need it */
-
-/*
* Hexdump option for displaying data sources:
*/