Go to the documentation of this file.
53 #ifndef _LINUX_P80211CONV_H
54 #define _LINUX_P80211CONV_H
56 #define WLAN_ETHADDR_LEN 6
57 #define WLAN_IEEE_OUI_LEN 3
59 #define WLAN_ETHCONV_ENCAP 1
60 #define WLAN_ETHCONV_8021h 3
62 #define WLAN_ETHHDR_LEN 14
64 #define P80211CAPTURE_VERSION 0x80211001
66 #define P80211_FRMMETA_MAGIC 0x802110
68 #define P80211SKB_FRMMETA(s) \
69 (((((struct p80211_frmmeta *)((s)->cb))->magic) == \
70 P80211_FRMMETA_MAGIC) ? \
71 ((struct p80211_frmmeta *)((s)->cb)) : \
74 #define P80211SKB_RXMETA(s) \
75 (P80211SKB_FRMMETA((s)) ? P80211SKB_FRMMETA((s))->rx : \
76 ((struct p80211_rxmeta *)(NULL)))