aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2014-06-16 18:25:33 -0400
committerJeff Morriss <jeff.morriss.ws@gmail.com>2014-06-16 23:14:05 +0000
commitf113306e0ed0efc77eb9655c6196243af7fce6ce (patch)
treea2eeb3d6e90ff1b9d00d60f78f17a8fc7e65645e /epan/proto.c
parent048646d322a79ef0f4b609527bf5a5b5bfe7a199 (diff)
More Python-bindings removal.
Change-Id: I4d82175781e65c73179f4c8e737a7900cb050bce Reviewed-on: https://code.wireshark.org/review/2283 Reviewed-by: Jeff Morriss <jeff.morriss.ws@gmail.com>
Diffstat (limited to 'epan/proto.c')
-rw-r--r--epan/proto.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/epan/proto.c b/epan/proto.c
index 96234e22ce..488c70f23c 100644
--- a/epan/proto.c
+++ b/epan/proto.c
@@ -468,12 +468,6 @@ proto_init(void (register_all_protocols_func)(register_cb cb, gpointer client_da
handle, and do whatever one-time initialization it needs to
do. */
register_all_protocols_func(cb, client_data);
-#ifdef HAVE_PYTHON
- /* Now scan for python protocols */
- if (cb)
- (*cb)(RA_PYTHON_REGISTER, NULL, client_data);
- register_all_py_protocols_func();
-#endif
#ifdef HAVE_PLUGINS
/* Now call the registration routines for all disssector
@@ -489,13 +483,6 @@ proto_init(void (register_all_protocols_func)(register_cb cb, gpointer client_da
they need. */
register_all_handoffs_func(cb, client_data);
-#ifdef HAVE_PYTHON
- /* Now do the same with python dissectors */
- if (cb)
- (*cb)(RA_PYTHON_HANDOFF, NULL, client_data);
- register_all_py_handoffs_func();
-#endif
-
#ifdef HAVE_PLUGINS
/* Now do the same with plugins. */
if (cb)