Linux Audio
Check our new training course
Embedded Linux Audio
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
#ifndef _IEEE802_11_H #define _IEEE802_11_H #define IEEE802_11_DATA_LEN 2304 /* Actually, the standard seems to be inconsistent about what the maximum frame size really is. Section 6.2.1.1.2 says 2304 octets, but the figure in Section 7.1.2 says 2312 octects. */ #define IEEE802_11_HLEN 30 #define IEEE802_11_FRAME_LEN (IEEE802_11_DATA_LEN + IEEE802_11_HLEN) struct ieee802_11_hdr { u16 frame_ctl; u16 duration_id; u8 addr1[ETH_ALEN]; u8 addr2[ETH_ALEN]; u8 addr3[ETH_ALEN]; u16 seq_ctl; u8 addr4[ETH_ALEN]; } __attribute__ ((packed)); /* Frame control field constants */ #define IEEE802_11_FCTL_VERS 0x0002 #define IEEE802_11_FCTL_FTYPE 0x000c #define IEEE802_11_FCTL_STYPE 0x00f0 #define IEEE802_11_FCTL_TODS 0x0100 #define IEEE802_11_FCTL_FROMDS 0x0200 #define IEEE802_11_FCTL_MOREFRAGS 0x0400 #define IEEE802_11_FCTL_RETRY 0x0800 #define IEEE802_11_FCTL_PM 0x1000 #define IEEE802_11_FCTL_MOREDATA 0x2000 #define IEEE802_11_FCTL_WEP 0x4000 #define IEEE802_11_FCTL_ORDER 0x8000 #define IEEE802_11_FTYPE_MGMT 0x0000 #define IEEE802_11_FTYPE_CTL 0x0004 #define IEEE802_11_FTYPE_DATA 0x0008 /* management */ #define IEEE802_11_STYPE_ASSOC_REQ 0x0000 #define IEEE802_11_STYPE_ASSOC_RESP 0x0010 #define IEEE802_11_STYPE_REASSOC_REQ 0x0020 #define IEEE802_11_STYPE_REASSOC_RESP 0x0030 #define IEEE802_11_STYPE_PROBE_REQ 0x0040 #define IEEE802_11_STYPE_PROBE_RESP 0x0050 #define IEEE802_11_STYPE_BEACON 0x0080 #define IEEE802_11_STYPE_ATIM 0x0090 #define IEEE802_11_STYPE_DISASSOC 0x00A0 #define IEEE802_11_STYPE_AUTH 0x00B0 #define IEEE802_11_STYPE_DEAUTH 0x00C0 /* control */ #define IEEE802_11_STYPE_PSPOLL 0x00A0 #define IEEE802_11_STYPE_RTS 0x00B0 #define IEEE802_11_STYPE_CTS 0x00C0 #define IEEE802_11_STYPE_ACK 0x00D0 #define IEEE802_11_STYPE_CFEND 0x00E0 #define IEEE802_11_STYPE_CFENDACK 0x00F0 /* data */ #define IEEE802_11_STYPE_DATA 0x0000 #define IEEE802_11_STYPE_DATA_CFACK 0x0010 #define IEEE802_11_STYPE_DATA_CFPOLL 0x0020 #define IEEE802_11_STYPE_DATA_CFACKPOLL 0x0030 #define IEEE802_11_STYPE_NULLFUNC 0x0040 #define IEEE802_11_STYPE_CFACK 0x0050 #define IEEE802_11_STYPE_CFPOLL 0x0060 #define IEEE802_11_STYPE_CFACKPOLL 0x0070 #define IEEE802_11_SCTL_FRAG 0x000F #define IEEE802_11_SCTL_SEQ 0xFFF0 #endif /* _IEEE802_11_H */