https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2313
--- Comment #4 from Guy Harris <guy@xxxxxxxxxxxx> 2009-05-01 11:32:02 PDT ---
So what is the purpose of the change
dsap = tvb_get_guint8(tvb, 0);
+ ssap = tvb_get_guint8(tvb, 1);
+
+ if (dsap == SAP_NULL && ssap == SAP_NULL) {
+ offset = 2;
+ dsap = tvb_get_guint8(tvb, 2);
+ ssap = tvb_get_guint8(tvb, 3);
+ }
+
Is there some specification that says that some packets will have 2 bytes of 0
padding between the 802.11 header and the 802.2 header?
--
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.