aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tpkt.c
diff options
context:
space:
mode:
authorDavid Perry <boolean263@protonmail.com>2024-01-16 13:46:10 -0500
committerAndersBroman <a.broman58@gmail.com>2024-01-17 08:35:43 +0000
commitbf909bf93e15460dd763f882fa3d0fabcc276b41 (patch)
tree4b4ad60621f233020fffd7a8077a4b1d563de34e /epan/dissectors/packet-tpkt.c
parentf20d45f1aa454f224b10412a7119eb54adb1b55c (diff)
Add descriptions for heur dissector tables
Build on !13975 to add human-readable descriptions for all heuristic dissector tables in Wireshark. Chosen names are meant to give some info on when a heuristic dissector lookup will be made. Terms like 'fallback' are used when the heuristic is only consulted if other checks do not result in dissection, for example. People with more intimate knowledge of the protocols and dissectors involved are encouraged to suggest or implement better descriptions.
Diffstat (limited to 'epan/dissectors/packet-tpkt.c')
-rw-r--r--epan/dissectors/packet-tpkt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-tpkt.c b/epan/dissectors/packet-tpkt.c
index 6c9f0c0a0c..343efa6cd3 100644
--- a/epan/dissectors/packet-tpkt.c
+++ b/epan/dissectors/packet-tpkt.c
@@ -678,7 +678,7 @@ proto_register_tpkt(void)
&tpkt_desegment);
/* heuristic dissectors for premable CredSSP before RDP and Fast-Path RDP packets */
- tpkt_heur_subdissector_list = register_heur_dissector_list("tpkt", proto_tpkt);
+ tpkt_heur_subdissector_list = register_heur_dissector_list_with_description("tpkt", "TPKT fragment", proto_tpkt);
proto_tpkt_heur = proto_register_protocol_in_name_only("TPKT Heuristic (for RDP)", "TPKT Heuristic (for RDP)", "tpkt", proto_tpkt, FT_PROTOCOL);
}