From 7a2827f169de5878a32163b471d855b32e8742ac Mon Sep 17 00:00:00 2001 From: Chet Lanctot Date: Mon, 9 Sep 2013 17:48:58 -0700 Subject: [PATCH] wlan: Add support for configuration of AKM suite Changes to allow setting the configuration item for AKM suite (wpa_key_mgmt) in hostapd configuration file. This is needed for PMF (802.11w) to add SHA256 to the list when necessary. Change-Id: Ia6fd4976241fb11525f4be6c11801b9c471d4427 CRs-Fixed: 523705 --- softap/sdk/qsap_api.c | 1 + softap/sdk/qsap_api.h | 1 + 2 files changed, 2 insertions(+) diff --git a/softap/sdk/qsap_api.c b/softap/sdk/qsap_api.c index e4560cd..299e2e0 100755 --- a/softap/sdk/qsap_api.c +++ b/softap/sdk/qsap_api.c @@ -152,6 +152,7 @@ static struct Command cmd_list[eCMD_LAST] = { { "setchannelrange", NULL }, { "autochannel", NULL }, { "ieee80211w", NULL }, + { "wpa_key_mgmt", NULL }, }; struct Command qsap_str[eSTR_LAST] = { diff --git a/softap/sdk/qsap_api.h b/softap/sdk/qsap_api.h index 2bbbd13..ecdab2d 100644 --- a/softap/sdk/qsap_api.h +++ b/softap/sdk/qsap_api.h @@ -323,6 +323,7 @@ typedef enum esap_cmd { eCMD_SET_CHANNEL_RANGE = 62, eCMD_GET_AUTO_CHANNEL = 63, eCMD_IEEE80211W = 64, + eCMD_WPA_KEY_MGMT = 65, eCMD_LAST /** New command numbers should be added above this */ } esap_cmd_t;