mp2t: support forced tcp decoding

Change-Id: I82a2908f513bff2f6452abffeb818e1f943fc67c
Reviewed-on: https://code.wireshark.org/review/15124
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Dominic Chen 2016-04-26 17:22:18 -04:00 committed by Anders Broman
parent f90882fa2f
commit 5b655d01ff
1 changed files with 1 additions and 0 deletions

View File

@ -1554,6 +1554,7 @@ proto_reg_handoff_mp2t(void)
heur_dissector_add("udp", heur_dissect_mp2t, "MP2T over UDP", "mp2t_udp", proto_mp2t, HEURISTIC_ENABLE);
dissector_add_uint("rtp.pt", PT_MP2T, mp2t_handle);
dissector_add_for_decode_as("tcp.port", mp2t_handle);
dissector_add_for_decode_as("udp.port", mp2t_handle);
heur_dissector_add("usb.bulk", heur_dissect_mp2t, "MP2T USB bulk endpoint", "mp2t_usb_bulk", proto_mp2t, HEURISTIC_ENABLE);
dissector_add_uint("wtap_encap", WTAP_ENCAP_MPEG_2_TS, mp2t_handle);