aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeveloper Alexander <dev@alex-mails.de>2021-09-04 10:24:04 +0200
committerRoland Knall <rknall@gmail.com>2021-09-08 14:40:24 +0000
commit03480fd6e1094ac1acc97294fb9076ad17cfd585 (patch)
treea3ab892672c933e42d5c99a817894f3a6c435db9
parent6caf24e96612b738c7320876c91c1a6c2ef51c1a (diff)
epan: export epan_set_always_visible()
Exports (DLL) epan_set_always_visible() to make it accessible for plugins. This enables post dissection taps to access all fields.
-rw-r--r--debian/libwireshark0.symbols1
-rw-r--r--epan/epan.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/debian/libwireshark0.symbols b/debian/libwireshark0.symbols
index b5a2d1ee48..79f7cd31fb 100644
--- a/debian/libwireshark0.symbols
+++ b/debian/libwireshark0.symbols
@@ -572,6 +572,7 @@ libwireshark.so.0 libwireshark0 #MINVER#
epan_new@Base 1.12.0~rc1
epan_plugins_supported@Base 3.5.0
epan_register_plugin@Base 2.5.0
+ epan_set_always_visible@Base 3.5.1
epan_strcasestr@Base 1.9.1
escape_string@Base 1.9.1
escape_string_len@Base 1.9.1
diff --git a/epan/epan.h b/epan/epan.h
index dd322644e4..0f19894aa9 100644
--- a/epan/epan.h
+++ b/epan/epan.h
@@ -179,6 +179,7 @@ WS_DLL_PUBLIC void epan_get_version_number(int *major, int *minor, int *micro);
* created if create_proto_tree is false in the call to epan_dissect_init().
* Clearing this reverts the decision to epan_dissect_init() and proto_tree_visible.
*/
+WS_DLL_PUBLIC
void epan_set_always_visible(gboolean force);
/** initialize an existing single packet dissection */