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

Wireshark-dev: Re: [Wireshark-dev] "Decode As" - adding payload decoding for the FLIP protocol

From: Guy Harris <guy@xxxxxxxxxxxx>
Date: Fri, 20 Aug 2010 18:50:45 -0700
On Aug 19, 2010, at 1:00 AM, Anders Broman wrote:

>> Currently, the best way to handle this is probably to have a preference for FLIP that specifies the payload 
>> protocol; that preference would be an enum preference, listing the possible protocols.  The dissectors for the 
>> protocols in question would
>> 
>> 	1) have to *NOT* assume that they're running atop, for example, a transport-layer protocol such as TCP or 
>> UDP running in turn over IP (for example, they can't assume that a network-layer address is available)
>> 
>> and
>> 
>> 	2) be registered with a name, so that the FLIP dissector can fetch a handle for them.
> 
> For the user DLT I think it is possible to specify the handoff protocol by name in the UAT table.
> The caveat is of course that the handoff protocol has to be registered by name.

Exactly - "The dissectors for the protocols in question would ... [have to be] be registered with a name, so that the FLIP dissector can fetch a handle for them."

However, this is different from the user DLT, where you have a mapping between user DLT values and dissectors; in this case, there's no protocol type field from which to map, so the "map" has only one row and one column in it, meaning it has only one value in it, namely the dissector to use.

(As for item 1), that also applies in the user DLT case - a dissector that fails if, for example, it can't find a source or destination IP address for the packet, as supplied by the dissector calling it, isn't going to work very well as a user DLT dissector, as there's no IP dissector above it in the stack, just as it won't work well as a FLIP payload dissector.)