mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-14 17:09:36 +00:00
114 lines
3 KiB
C
114 lines
3 KiB
C
|
|
||
|
#ifndef _DRIVER_RTL_H_
|
||
|
#define _DRIVER_RTL_H_
|
||
|
|
||
|
|
||
|
#define RTL_IOCTL_HOSTAPD (SIOCIWFIRSTPRIV + 28)
|
||
|
|
||
|
#define IEEE_CRYPT_ALG_NAME_LEN (16)
|
||
|
|
||
|
/* RTL871X_IOCTL_HOSTAPD ioctl() cmd: */
|
||
|
enum {
|
||
|
RTL871X_HOSTAPD_FLUSH = 1,
|
||
|
RTL871X_HOSTAPD_ADD_STA = 2,
|
||
|
RTL871X_HOSTAPD_REMOVE_STA = 3,
|
||
|
RTL871X_HOSTAPD_GET_INFO_STA = 4,
|
||
|
/* REMOVED: PRISM2_HOSTAPD_RESET_TXEXC_STA = 5, */
|
||
|
RTL871X_HOSTAPD_GET_WPAIE_STA = 5,
|
||
|
RTL871X_SET_ENCRYPTION = 6,
|
||
|
RTL871X_GET_ENCRYPTION = 7,
|
||
|
RTL871X_HOSTAPD_SET_FLAGS_STA = 8,
|
||
|
RTL871X_HOSTAPD_GET_RID = 9,
|
||
|
RTL871X_HOSTAPD_SET_RID = 10,
|
||
|
RTL871X_HOSTAPD_SET_ASSOC_AP_ADDR = 11,
|
||
|
RTL871X_HOSTAPD_SET_GENERIC_ELEMENT = 12,
|
||
|
RTL871X_HOSTAPD_MLME = 13,
|
||
|
RTL871X_HOSTAPD_SCAN_REQ = 14,
|
||
|
RTL871X_HOSTAPD_STA_CLEAR_STATS = 15,
|
||
|
RTL871X_HOSTAPD_SET_BEACON = 16,
|
||
|
RTL871X_HOSTAPD_SET_WPS_BEACON = 17,
|
||
|
RTL871X_HOSTAPD_SET_WPS_PROBE_RESP = 18,
|
||
|
RTL871X_HOSTAPD_SET_WPS_ASSOC_RESP = 19,
|
||
|
};
|
||
|
|
||
|
typedef struct ieee_param {
|
||
|
u32 cmd;
|
||
|
u8 sta_addr[ETH_ALEN];
|
||
|
union {
|
||
|
struct {
|
||
|
u8 name;
|
||
|
u32 value;
|
||
|
} wpa_param;
|
||
|
struct {
|
||
|
u32 len;
|
||
|
u8 reserved[32];
|
||
|
u8 data[0];
|
||
|
} wpa_ie;
|
||
|
struct{
|
||
|
int command;
|
||
|
int reason_code;
|
||
|
} mlme;
|
||
|
struct {
|
||
|
u8 alg[IEEE_CRYPT_ALG_NAME_LEN];
|
||
|
u8 set_tx;
|
||
|
u32 err;
|
||
|
u8 idx;
|
||
|
u8 seq[8]; /* sequence counter (set: RX, get: TX) */
|
||
|
u16 key_len;
|
||
|
u8 key[0];
|
||
|
} crypt;
|
||
|
struct {
|
||
|
u16 aid;
|
||
|
u16 capability;
|
||
|
int flags;
|
||
|
u8 tx_supp_rates[16];
|
||
|
//struct ieee80211_ht_capability ht_cap;
|
||
|
struct ieee80211_ht_capabilities ht_cap;
|
||
|
} add_sta;
|
||
|
struct {
|
||
|
u8 reserved[2];//for set max_num_sta
|
||
|
u8 buf[0];
|
||
|
} bcn_ie;
|
||
|
|
||
|
} u;
|
||
|
|
||
|
} ieee_param;
|
||
|
|
||
|
|
||
|
|
||
|
#define IEEE80211_CCK_RATE_LEN 4
|
||
|
#define IEEE80211_OFDM_RATE_LEN 8
|
||
|
|
||
|
#define IEEE80211_CCK_RATE_1MB 0x02
|
||
|
#define IEEE80211_CCK_RATE_2MB 0x04
|
||
|
#define IEEE80211_CCK_RATE_5MB 0x0B
|
||
|
#define IEEE80211_CCK_RATE_11MB 0x16
|
||
|
#define IEEE80211_OFDM_RATE_6MB 0x0C
|
||
|
#define IEEE80211_OFDM_RATE_9MB 0x12
|
||
|
#define IEEE80211_OFDM_RATE_12MB 0x18
|
||
|
#define IEEE80211_OFDM_RATE_18MB 0x24
|
||
|
#define IEEE80211_OFDM_RATE_24MB 0x30
|
||
|
#define IEEE80211_OFDM_RATE_36MB 0x48
|
||
|
#define IEEE80211_OFDM_RATE_48MB 0x60
|
||
|
#define IEEE80211_OFDM_RATE_54MB 0x6C
|
||
|
#define IEEE80211_BASIC_RATE_MASK 0x80
|
||
|
|
||
|
#define IEEE80211_CCK_RATE_1MB_MASK (1<<0)
|
||
|
#define IEEE80211_CCK_RATE_2MB_MASK (1<<1)
|
||
|
#define IEEE80211_CCK_RATE_5MB_MASK (1<<2)
|
||
|
#define IEEE80211_CCK_RATE_11MB_MASK (1<<3)
|
||
|
#define IEEE80211_OFDM_RATE_6MB_MASK (1<<4)
|
||
|
#define IEEE80211_OFDM_RATE_9MB_MASK (1<<5)
|
||
|
#define IEEE80211_OFDM_RATE_12MB_MASK (1<<6)
|
||
|
#define IEEE80211_OFDM_RATE_18MB_MASK (1<<7)
|
||
|
#define IEEE80211_OFDM_RATE_24MB_MASK (1<<8)
|
||
|
#define IEEE80211_OFDM_RATE_36MB_MASK (1<<9)
|
||
|
#define IEEE80211_OFDM_RATE_48MB_MASK (1<<10)
|
||
|
#define IEEE80211_OFDM_RATE_54MB_MASK (1<<11)
|
||
|
|
||
|
#define IEEE80211_CCK_RATES_MASK 0x0000000F
|
||
|
#define IEEE80211_OFDM_RATES_MASK 0x00000FF0
|
||
|
|
||
|
#endif
|
||
|
|