aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tzsp.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2015-11-08 20:15:22 -0500
committerMichael Mann <mmann78@netscape.net>2015-11-09 15:59:42 +0000
commit0aa9e9864721d5f425ffeba85bbb642ebd12e771 (patch)
tree98918da5fd1c719a3ca17b6df2369a663ed66550 /epan/dissectors/packet-tzsp.c
parent8f529628338f20948e80835076b7b18f6d48c6cf (diff)
Convert some UDP subdissectors to "new" style.
Change-Id: I3c1ee97f68af4539b97d50b75c03ff82147dbc5e Reviewed-on: https://code.wireshark.org/review/11649 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-tzsp.c')
-rw-r--r--epan/dissectors/packet-tzsp.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/epan/dissectors/packet-tzsp.c b/epan/dissectors/packet-tzsp.c
index f4dc908d7e..fa001a74ac 100644
--- a/epan/dissectors/packet-tzsp.c
+++ b/epan/dissectors/packet-tzsp.c
@@ -284,8 +284,8 @@ tzsp_encap_to_wtap_encap(guint16 encap)
/* Dissect a TZSP packet */
/* ************************************************************************* */
-static void
-dissect_tzsp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+static int
+dissect_tzsp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
{
proto_tree *tzsp_tree = NULL;
proto_item *ti = NULL;
@@ -371,6 +371,8 @@ dissect_tzsp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
call_dissector(data_handle, next_tvb, pinfo, tree);
}
}
+
+ return tvb_captured_length(tvb);
}
/* ************************************************************************* */
@@ -532,7 +534,7 @@ proto_register_tzsp(void)
proto_register_field_array(proto_tzsp, hf, array_length(hf));
proto_register_subtree_array(ett, array_length(ett));
- tzsp_handle = register_dissector("tzsp", dissect_tzsp, proto_tzsp);
+ tzsp_handle = new_register_dissector("tzsp", dissect_tzsp, proto_tzsp);
}
void