On Mon, 26 Mar 2007 04:42:22 -0700 mohamed wrote: > Add draft IEEE 802.11n management action frame data structures and > constants > > Several Action frame format are defined to support IEEE 802.11n > features. > This patch add the data structure for Block Ack management action frame. > > Signed-off-by: Mohamed Abbas <mabbas@xxxxxxxxxxxxxxx> > > diff -Nupr wireless-dev/include/linux/ieee80211.h > wireless-dev-new/include/linux/ieee80211.h > --- wireless-dev/include/linux/ieee80211.h 2007-03-23 13:25:24.000000000 > -0700 > +++ wireless-dev-new/include/linux/ieee80211.h 2007-03-23 > 13:43:21.000000000 -0700 > @@ -105,6 +105,19 @@ struct ieee80211_hdr { > } __attribute__ ((packed)); > > > +struct ieee802_11_addba_param { > + __le16 reserved:1; > + __le16 backPolicy:1; > + __le16 tid:4; > + __le16 bufSize:10; > +} __attribute__ ((packed)); > + > +struct ieee80211_delba_param { > + __le16 reserved:11; > + __le16 intiator:1; > + __le16 tid:4; > +}__attribute__ ((packed)); These bitfields are all local to one machine, not transported across a network to systems where the bitfields may be represented differently? --- ~Randy *** Remember to use Documentation/SubmitChecklist when testing your code *** - To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html