diff options
author | Avinash Patil <patila@marvell.com> | 2012-06-15 15:21:55 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-06-20 15:14:25 -0400 |
commit | 96893538564c43276dffe5e294b56935197cf1c8 (patch) | |
tree | 03855cb6ae145f62e766e2b7edcddb4d3c52fef4 /drivers/net/wireless/mwifiex/fw.h | |
parent | 5d66cb62954106d4abfb67bbb5a14cec57903cbb (diff) |
mwifiex: support for WEP in AP mode
This patch adds support for WEP open/shared encryption in AP mode.
Signed-off-by: Avinash Patil <patila@marvell.com>
Signed-off-by: Bing Zhao <bzhao@marvell.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/mwifiex/fw.h')
-rw-r--r-- | drivers/net/wireless/mwifiex/fw.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/net/wireless/mwifiex/fw.h b/drivers/net/wireless/mwifiex/fw.h index 9686f6fec19a..1184141839ae 100644 --- a/drivers/net/wireless/mwifiex/fw.h +++ b/drivers/net/wireless/mwifiex/fw.h | |||
@@ -124,6 +124,7 @@ enum MWIFIEX_802_11_PRIVACY_FILTER { | |||
124 | #define TLV_TYPE_UAP_DTIM_PERIOD (PROPRIETARY_TLV_BASE_ID + 45) | 124 | #define TLV_TYPE_UAP_DTIM_PERIOD (PROPRIETARY_TLV_BASE_ID + 45) |
125 | #define TLV_TYPE_UAP_BCAST_SSID (PROPRIETARY_TLV_BASE_ID + 48) | 125 | #define TLV_TYPE_UAP_BCAST_SSID (PROPRIETARY_TLV_BASE_ID + 48) |
126 | #define TLV_TYPE_UAP_RTS_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 51) | 126 | #define TLV_TYPE_UAP_RTS_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 51) |
127 | #define TLV_TYPE_UAP_WEP_KEY (PROPRIETARY_TLV_BASE_ID + 59) | ||
127 | #define TLV_TYPE_UAP_WPA_PASSPHRASE (PROPRIETARY_TLV_BASE_ID + 60) | 128 | #define TLV_TYPE_UAP_WPA_PASSPHRASE (PROPRIETARY_TLV_BASE_ID + 60) |
128 | #define TLV_TYPE_UAP_ENCRY_PROTOCOL (PROPRIETARY_TLV_BASE_ID + 64) | 129 | #define TLV_TYPE_UAP_ENCRY_PROTOCOL (PROPRIETARY_TLV_BASE_ID + 64) |
129 | #define TLV_TYPE_UAP_AKMP (PROPRIETARY_TLV_BASE_ID + 65) | 130 | #define TLV_TYPE_UAP_AKMP (PROPRIETARY_TLV_BASE_ID + 65) |
@@ -1201,6 +1202,13 @@ struct host_cmd_tlv_passphrase { | |||
1201 | u8 passphrase[0]; | 1202 | u8 passphrase[0]; |
1202 | } __packed; | 1203 | } __packed; |
1203 | 1204 | ||
1205 | struct host_cmd_tlv_wep_key { | ||
1206 | struct host_cmd_tlv tlv; | ||
1207 | u8 key_index; | ||
1208 | u8 is_default; | ||
1209 | u8 key[1]; | ||
1210 | }; | ||
1211 | |||
1204 | struct host_cmd_tlv_auth_type { | 1212 | struct host_cmd_tlv_auth_type { |
1205 | struct host_cmd_tlv tlv; | 1213 | struct host_cmd_tlv tlv; |
1206 | u8 auth_type; | 1214 | u8 auth_type; |