ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
April 17th, 2024 | 14:30-16:00 SGT (UTC+8) | Online

Wireshark-dev: Re: [Wireshark-dev] ATM Dissector Enhancement

From: Guy Harris <guy@xxxxxxxxxxxx>
Date: Wed, 25 Jun 2008 10:46:34 -0700
McAtee, Kip wrote:

+            if (octet[0] == 0x00 && octet[1] == 0x21)
+            {
+                call_dissector(ppp_handle, next_tvb, pinfo, tree);
+            }

So is this for VC-multiplexed PPPoA (for IP)? If so, you might want to use pntohs() on the two octets and compare against PPP_IP from epan/ppptypes.h.

+            else if ((octet[0] == 0x45) ||
+                     ((octet[0] & 0xf0) == 0x60))
+            {
+                call_dissector(ip_handle, next_tvb, pinfo, tree);
+            }

That won't handle IPv4 headers with options - should it just do

		else if (((octet[0] & 0xf0) == 0x40) ||
			 ((octet[0] & 0xf0) == 0x60))