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

dissector_add_

0

I want to base the handoff call off the Data packet instead of using the below port exception.

Thoughts?

void proto_reg_handoff_bppcp(void) { dissector_handle_t bppcp_handle;

    data_handle = find_dissector("data");
    bppcp_handle = create_dissector_handle(dissect_bppcp, proto_bppcp);
    dissector_add_uint("tcp.port", global_bppcp_port, bppcp_handle);

asked 11 Jan '13, 13:04

jballard1979's gravatar image

jballard1979
207710
accept rate: 0%


One Answer:

0

nevermind, I'll use the below! :)

heur_dissector_add

answered 11 Jan '13, 13:15

jballard1979's gravatar image

jballard1979
207710
accept rate: 0%