|
@@ -298,7 +298,7 @@ typedef struct wlan_fr_mgmt {
|
|
|
u16 type;
|
|
|
u16 len; /* DOES NOT include CRC !!!! */
|
|
|
u8 *buf;
|
|
|
- p80211_hdr_t *hdr;
|
|
|
+ union p80211_hdr *hdr;
|
|
|
/* used for target specific data, skb in Linux */
|
|
|
void *priv;
|
|
|
/*-- fixed fields -----------*/
|
|
@@ -310,7 +310,7 @@ typedef struct wlan_fr_beacon {
|
|
|
u16 type;
|
|
|
u16 len;
|
|
|
u8 *buf;
|
|
|
- p80211_hdr_t *hdr;
|
|
|
+ union p80211_hdr *hdr;
|
|
|
/* used for target specific data, skb in Linux */
|
|
|
void *priv;
|
|
|
/*-- fixed fields -----------*/
|
|
@@ -333,7 +333,7 @@ typedef struct wlan_fr_ibssatim {
|
|
|
u16 type;
|
|
|
u16 len;
|
|
|
u8 *buf;
|
|
|
- p80211_hdr_t *hdr;
|
|
|
+ union p80211_hdr *hdr;
|
|
|
/* used for target specific data, skb in Linux */
|
|
|
void *priv;
|
|
|
|
|
@@ -349,7 +349,7 @@ typedef struct wlan_fr_disassoc {
|
|
|
u16 type;
|
|
|
u16 len;
|
|
|
u8 *buf;
|
|
|
- p80211_hdr_t *hdr;
|
|
|
+ union p80211_hdr *hdr;
|
|
|
/* used for target specific data, skb in Linux */
|
|
|
void *priv;
|
|
|
/*-- fixed fields -----------*/
|
|
@@ -364,7 +364,7 @@ typedef struct wlan_fr_assocreq {
|
|
|
u16 type;
|
|
|
u16 len;
|
|
|
u8 *buf;
|
|
|
- p80211_hdr_t *hdr;
|
|
|
+ union p80211_hdr *hdr;
|
|
|
/* used for target specific data, skb in Linux */
|
|
|
void *priv;
|
|
|
/*-- fixed fields -----------*/
|
|
@@ -381,7 +381,7 @@ typedef struct wlan_fr_assocresp {
|
|
|
u16 type;
|
|
|
u16 len;
|
|
|
u8 *buf;
|
|
|
- p80211_hdr_t *hdr;
|
|
|
+ union p80211_hdr *hdr;
|
|
|
/* used for target specific data, skb in Linux */
|
|
|
void *priv;
|
|
|
/*-- fixed fields -----------*/
|
|
@@ -398,7 +398,7 @@ typedef struct wlan_fr_reassocreq {
|
|
|
u16 type;
|
|
|
u16 len;
|
|
|
u8 *buf;
|
|
|
- p80211_hdr_t *hdr;
|
|
|
+ union p80211_hdr *hdr;
|
|
|
/* used for target specific data, skb in Linux */
|
|
|
void *priv;
|
|
|
/*-- fixed fields -----------*/
|
|
@@ -416,7 +416,7 @@ typedef struct wlan_fr_reassocresp {
|
|
|
u16 type;
|
|
|
u16 len;
|
|
|
u8 *buf;
|
|
|
- p80211_hdr_t *hdr;
|
|
|
+ union p80211_hdr *hdr;
|
|
|
/* used for target specific data, skb in Linux */
|
|
|
void *priv;
|
|
|
/*-- fixed fields -----------*/
|
|
@@ -433,7 +433,7 @@ typedef struct wlan_fr_probereq {
|
|
|
u16 type;
|
|
|
u16 len;
|
|
|
u8 *buf;
|
|
|
- p80211_hdr_t *hdr;
|
|
|
+ union p80211_hdr *hdr;
|
|
|
/* used for target specific data, skb in Linux */
|
|
|
void *priv;
|
|
|
/*-- fixed fields -----------*/
|
|
@@ -448,7 +448,7 @@ typedef struct wlan_fr_proberesp {
|
|
|
u16 type;
|
|
|
u16 len;
|
|
|
u8 *buf;
|
|
|
- p80211_hdr_t *hdr;
|
|
|
+ union p80211_hdr *hdr;
|
|
|
/* used for target specific data, skb in Linux */
|
|
|
void *priv;
|
|
|
/*-- fixed fields -----------*/
|
|
@@ -469,7 +469,7 @@ typedef struct wlan_fr_authen {
|
|
|
u16 type;
|
|
|
u16 len;
|
|
|
u8 *buf;
|
|
|
- p80211_hdr_t *hdr;
|
|
|
+ union p80211_hdr *hdr;
|
|
|
/* used for target specific data, skb in Linux */
|
|
|
void *priv;
|
|
|
/*-- fixed fields -----------*/
|
|
@@ -486,7 +486,7 @@ typedef struct wlan_fr_deauthen {
|
|
|
u16 type;
|
|
|
u16 len;
|
|
|
u8 *buf;
|
|
|
- p80211_hdr_t *hdr;
|
|
|
+ union p80211_hdr *hdr;
|
|
|
/* used for target specific data, skb in Linux */
|
|
|
void *priv;
|
|
|
/*-- fixed fields -----------*/
|