From e75969fb7182a384a92c94114208200be9793d0c Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Tue, 15 Sep 2020 08:50:00 +1000 Subject: [PATCH] quic: show encapsulated protocols as top level trees Signed-off-by: Ronnie Sahlberg --- epan/dissectors/packet-quic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/dissectors/packet-quic.c b/epan/dissectors/packet-quic.c index 5121562a15..5fca3c9a88 100644 --- a/epan/dissectors/packet-quic.c +++ b/epan/dissectors/packet-quic.c @@ -1082,7 +1082,7 @@ process_quic_stream(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *t tvbuff_t *next_tvb = tvb_new_subset_remaining(tvb, offset); // Traverse the STREAM frame tree. proto_tree *top_tree = proto_tree_get_parent_tree(tree); - //top_tree = proto_tree_get_parent_tree(top_tree); + top_tree = proto_tree_get_parent_tree(top_tree); call_dissector_with_data(quic_info->app_handle, next_tvb, pinfo, top_tree, stream_info); } }