1 | initial version |
The vlan dissector does not register a dissector table, so unless you modify the dissector, what you're attempting to do isn't going to work.
For example, see the call to register_dissector_table()
made in packet-ethertype.c's proto_register_ethertype() routine or search the Wireshark sources for many more examples.
$ grep register_dissector_table packet*.c | wc -l
381
2 | No.2 Revision |
The vlan dissector does not register a dissector table, so unless you modify the dissector, what you're attempting to do isn't going to work.
For example, see the call to register_dissector_table()
made in packet-ethertype.c's proto_register_ethertype() routine or search the Wireshark sources for many more examples.
$ grep register_dissector_table packet*.c | wc -l
381