1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- #ifndef HOSTAPD_DEFS_H
- #define HOSTAPD_DEFS_H
- #ifndef ETH_ALEN
- #define ETH_ALEN 6
- #endif
- #ifndef IFNAMSIZ
- #define IFNAMSIZ 16
- #endif
- #ifndef ETH_P_ALL
- #define ETH_P_ALL 0x0003
- #endif
- #ifndef ETH_P_PAE
- #define ETH_P_PAE 0x888E
- #endif
- #ifndef ETH_P_EAPOL
- #define ETH_P_EAPOL ETH_P_PAE
- #endif
- #ifndef ETH_P_RRB
- #define ETH_P_RRB 0x890D
- #endif
- #ifdef _MSC_VER
- #pragma pack(push, 1)
- #endif
- #define MAX_VLAN_ID 4094
- struct ieee8023_hdr {
- u8 dest[6];
- u8 src[6];
- u16 ethertype;
- } STRUCT_PACKED;
- struct ieee80211_hdr {
- le16 frame_control;
- le16 duration_id;
- u8 addr1[6];
- u8 addr2[6];
- u8 addr3[6];
- le16 seq_ctrl;
-
- } STRUCT_PACKED;
- #ifdef _MSC_VER
- #pragma pack(pop)
- #endif
- #define IEEE80211_DA_FROMDS addr1
- #define IEEE80211_BSSID_FROMDS addr2
- #define IEEE80211_SA_FROMDS addr3
- #define IEEE80211_HDRLEN (sizeof(struct ieee80211_hdr))
- #define IEEE80211_FC(type, stype) host_to_le16((type << 2) | (stype << 4))
- #define HOSTAPD_MTU 2290
- #endif
|