mirror of
https://github.com/espressif/esp-idf.git
synced 2025-11-30 14:20:05 +01:00
feature: support tx amsdu
This commit is contained in:
@@ -26,6 +26,10 @@ struct ieee802_1x_hdr {
|
||||
|
||||
|
||||
#define EAPOL_VERSION 2
|
||||
#define SPP_AMSDU_CAP_ENABLE 1
|
||||
#define SPP_AMSDU_REQ_ENABLE 1
|
||||
#define SPP_AMSDU_CAP_DISABLE 0
|
||||
#define SPP_AMSDU_REQ_DISABLE 0
|
||||
|
||||
enum { IEEE802_1X_TYPE_EAP_PACKET = 0,
|
||||
IEEE802_1X_TYPE_EAPOL_START = 1,
|
||||
|
||||
@@ -110,6 +110,8 @@
|
||||
#define WPA_CAPABILITY_MFPR BIT(6)
|
||||
#define WPA_CAPABILITY_MFPC BIT(7)
|
||||
#define WPA_CAPABILITY_PEERKEY_ENABLED BIT(9)
|
||||
#define WPA_CAPABILITY_SPP_CAPABLE BIT(10)
|
||||
#define WPA_CAPABILITY_SPP_REQUIRED BIT(11)
|
||||
|
||||
|
||||
/* IEEE 802.11r */
|
||||
@@ -303,6 +305,11 @@ struct wpa_ie_data {
|
||||
int mgmt_group_cipher;
|
||||
};
|
||||
|
||||
struct rsn_sppamsdu_sup {
|
||||
bool capable;
|
||||
bool require;
|
||||
};
|
||||
|
||||
const char * wpa_cipher_txt(int cipher);
|
||||
|
||||
int wpa_parse_wpa_ie_rsn(const u8 *rsn_ie, size_t rsn_ie_len,
|
||||
|
||||
Reference in New Issue
Block a user