tls: Use Data dissector when no appdata dissector found

Use the Data dissector to show decrypted data if nothing else is used.
This commit is contained in:
Stig Bjørlykke 2020-10-22 15:38:18 +02:00 committed by Wireshark GitLab Utility
parent 524a28c4b1
commit 17170ea1fe
1 changed files with 1 additions and 0 deletions

View File

@ -1663,6 +1663,7 @@ process_ssl_payload(tvbuff_t *tvb, int offset, packet_info *pinfo,
} else {
/* No heuristics, no port-based proto, unknown protocol. */
ssl_debug_printf("%s: no appdata dissector found\n", G_STRFUNC);
call_data_dissector(next_tvb, pinfo, proto_tree_get_root(tree));
return;
}
}