summaryrefslogtreecommitdiff
path: root/epan/packet.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-11-02 15:52:25 +0000
committerMichael Mann <mmann78@netscape.net>2013-11-02 15:52:25 +0000
commit02a83915359f7fadf149df0fe0dea8e971bb32f4 (patch)
tree33b0da2fee3eed9a07417a0aa7e4c2356638cd33 /epan/packet.h
parent925cba4e91ea0f44970462d30b62533c8a100e24 (diff)
downloadwireshark-02a83915359f7fadf149df0fe0dea8e971bb32f4.tar.gz
Require dissector_try_string to pass a data parameter to its subdissectors. There weren't that many calls, so might as well modify the function than create a need for dissector_try_string_new.
svn path=/trunk/; revision=53049
Diffstat (limited to 'epan/packet.h')
-rw-r--r--epan/packet.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/epan/packet.h b/epan/packet.h
index 96d7d85eff..addfc14af1 100644
--- a/epan/packet.h
+++ b/epan/packet.h
@@ -237,12 +237,6 @@ WS_DLL_PUBLIC void dissector_reset_string(const char *name, const gchar *pattern
the dissector with the arguments supplied, and return TRUE, otherwise
return FALSE. */
WS_DLL_PUBLIC gboolean dissector_try_string(dissector_table_t sub_dissectors,
- const gchar *string, tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree);
-
-/* Look for a given string in a given dissector table and, if found, call
- the dissector with the arguments supplied, and return TRUE, otherwise
- return FALSE. */
-WS_DLL_PUBLIC gboolean dissector_try_string_new(dissector_table_t sub_dissectors,
const gchar *string, tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data);
/* Look for a given value in a given string dissector table and, if found,