aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2015-10-13 20:34:43 -0400
committerAnders Broman <a.broman58@gmail.com>2015-10-15 21:17:27 +0000
commit26eec29b44ee6b20b6eae78f4658a9277c69c696 (patch)
treed0f9d82bda9d1036835cded365b1c079064df0b1 /epan/proto.h
parentb212a4eb4370a433451187d8beecf952915298a8 (diff)
Remove ability to make dissectors "private"
Change-Id: If5897e8137f729503edf2cafb49b2ebeab4716ad Reviewed-on: https://code.wireshark.org/review/10997 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/proto.h')
-rw-r--r--epan/proto.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/epan/proto.h b/epan/proto.h
index 61003f3743..e0623f7de4 100644
--- a/epan/proto.h
+++ b/epan/proto.h
@@ -2015,18 +2015,6 @@ proto_register_protocol(const char *name, const char *short_name, const char *fi
WS_DLL_PUBLIC gboolean
proto_deregister_protocol(const char *short_name);
-/** Mark protocol as private
- @param proto_id the handle of the protocol */
-WS_DLL_PUBLIC
-void
-proto_mark_private(const int proto_id);
-
-/** Return if protocol is private
- @param proto_id the handle of the protocol
- @return TRUE if it is a private protocol, FALSE is not. */
-WS_DLL_PUBLIC gboolean
-proto_is_private(const int proto_id);
-
/** This type of function can be registered to get called whenever
a given field was not found but a its prefix is matched;
It can be used to procrastinate the hf array registration.