Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-bugs: [Wireshark-bugs] [Bug 8379] HPFEEDS protocol : honeypot protocol feeds support a

Date: Sat, 23 Feb 2013 08:20:34 +0000

Comment # 6 on bug 8379 from
(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.