Dissector doesn't see retransmission packets
Hello,
my dissector is registered to decode a bunch of ports:
tcp_table = DissectorTable.get ("tcp.port")
tcp_table:add (9000, S8HR_proto)
tcp_table:add (9001, S8HR_proto)
tcp_table:add (9002, S8HR_proto)
Sometime wireshark marks traffic on port 9001 as [TCP Retransmissions] and in that case the LUA dissector is either ignored or packet decode gets overwritten so the expected content remains buried in the "TCP payload".
Is there a chance to still have LUA dissector working in case of TCP Retransmissions also ?
Thx!