Can't get a DLT_USER type to be dissected as MIME multipart
Hi!
We have a custom link-layer type PCAPNG EPB structure, which contains a MIME-multipart message (directly, from boundary, so no HTTP2 headers and such).
How can I get it to show in WS? I found the mime_multipart dissector, but cant get it working. When using a custom DLT_USER with "mime_multipart" it shows: dissector not found (WS ver 3.6.2) Also tried to call Dissector.get from a LUA script, but its not working.
Is there a way to do this?
Thanks.
What does "custom PCAPNG EPB structure"? The only things that can be customized in a pcapng Enhanced Packet Block are 1) you can add custom options or 2) add a local-use option (one with the uppermost bit set in the option type). You can't change the fixed portion of the EPB.
That's not "a custom PCAPNG EPB structure", that's a custom link-layer type, which can be used with pcap or pcapng files. Is that what you mean - you are using a
DLT_USER
value (or, rather, aLINKTYPE_USER
value) in the Interface Description Block for the interface on which the EPB arrived?Yes, I meant to say, that the link-layer type is a custom value (DLT_USER). The EPB structure is fixed of course.