Merge "wlan: Add support for 11AC, ACS hostapd config"

This commit is contained in:
Linux Build Service Account
2015-09-22 20:58:29 -07:00
committed by Gerrit - the friendly Code Review server
2 changed files with 8 additions and 0 deletions

View File

@@ -154,6 +154,10 @@ static struct Command cmd_list[eCMD_LAST] = {
{ "ieee80211w", NULL }, { "ieee80211w", NULL },
{ "wpa_key_mgmt", NULL }, { "wpa_key_mgmt", NULL },
{ "max_num_sta", "8" }, { "max_num_sta", "8" },
{ "ieee80211ac", NULL },
{ "vht_oper_chwidth", NULL },
{ "chanlist", NULL },
{ "ht_capab", NULL },
}; };
struct Command qsap_str[eSTR_LAST] = { struct Command qsap_str[eSTR_LAST] = {

View File

@@ -325,6 +325,10 @@ typedef enum esap_cmd {
eCMD_IEEE80211W = 64, eCMD_IEEE80211W = 64,
eCMD_WPA_KEY_MGMT = 65, eCMD_WPA_KEY_MGMT = 65,
eCMD_SET_MAX_CLIENTS = 66, eCMD_SET_MAX_CLIENTS = 66,
eCMD_IEEE80211AC = 67,
eCMD_VHT_OPER_CH_WIDTH = 68,
eCMD_ACS_CHAN_LIST = 69,
eCMD_HT_CAPAB = 70,
eCMD_LAST /** New command numbers should be added above this */ eCMD_LAST /** New command numbers should be added above this */
} esap_cmd_t; } esap_cmd_t;