aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-fix.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-05-04 01:27:33 +0000
committerMichael Mann <mmann78@netscape.net>2013-05-04 01:27:33 +0000
commit377470abe3ff3e37b8f8626c604e9aaede2ae887 (patch)
tree0621c008a9f9ba092b7af89abf0c7cfa34230c5c /epan/dissectors/packet-fix.c
parent04c02451aad283772a7b210f9dbf2d04adf54208 (diff)
Decrypt Fix protocol over SSL. Bug 8625 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8625)
svn path=/trunk/; revision=49152
Diffstat (limited to 'epan/dissectors/packet-fix.c')
-rw-r--r--epan/dissectors/packet-fix.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-fix.c b/epan/dissectors/packet-fix.c
index 6d80e7d90b..913b6a4692 100644
--- a/epan/dissectors/packet-fix.c
+++ b/epan/dissectors/packet-fix.c
@@ -444,10 +444,12 @@ dissect_fix_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data
/* Register the protocol with Wireshark */
static void range_delete_fix_tcp_callback(guint32 port) {
dissector_delete_uint("tcp.port", port, fix_handle);
+ ssl_dissector_delete(port, "fix", TRUE);
}
static void range_add_fix_tcp_callback(guint32 port) {
dissector_add_uint("tcp.port", port, fix_handle);
+ ssl_dissector_add(port, "fix", TRUE);
}
static void fix_prefs(void)