Comment # 6
on bug 8379
from Sebastiano Di Paola
(In reply to comment #4)
> There's a registration conflict on TCP port 10000, also used by TCPENCAP and
> NDMP. This has to sorted out.
>
> Also: fix indentation style, no-tabs preferred.
Is enough to solve the TCP port 10000 conflict changing inside hpfeeds
dissector:
dissector_add_uint("tcp.port", HPFEEDS_PORT, hpfeeds_handle);
with
dissector_add_handle("tcp.port", hpfeeds_handle);
So hpfeeds dissection is made only if the user will choose explicitly to decode
port 10000 as hpfeeds?
You are receiving this mail because:
- You are watching all bug changes.