This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

Custom Dissector - Duplicate Protocol found:

0

I continuously am forced to delete the below from ...\wireshark\epan\dissectors\register.c Is there another way to swat this fly from my face?

/-----------------------------------------------------------------------------------------/ {extern void proto_register_bppcp (void); if(cb) (*cb)(RA_REGISTER, "proto_register_bppcp", client_data); proto_register_bppcp ();}

&,

{extern void proto_reg_handoff_bppcp (void); if(cb) (*cb)(RA_HANDOFF, "proto_reg_handoff_bppcp", client_data); proto_reg_handoff_bppcp ();}

asked 07 Jan '13, 14:20

jballard1979's gravatar image

jballard1979
207710
accept rate: 0%


One Answer:

1

Remove epan/dissectors/register-cache.pkl,

then build again using make -C epan

answered 07 Jan '13, 15:21

Jaap's gravatar image

Jaap ♦
11.7k16101
accept rate: 14%

How do I use the make -C epan command using win?

(07 Jan '13, 20:36) jballard1979