Export wpa_supplicant config item 'he' for external configuration
Export the "he" network profile item to be configurable from external client side, like wpa_cli or NetworkManager. This follows the earlier changes to allow the previously internal-only parameter (e.g., vht) to be used for additional purposes for AP mode. Signed-off-by: Chaoli Zhou <quic_zchaoli@quicinc.com>
This commit is contained in:
parent
9932ff30c4
commit
e8912452ed
2 changed files with 2 additions and 1 deletions
|
@ -2501,6 +2501,7 @@ static const struct parse_data ssid_fields[] = {
|
||||||
{ FUNC(freq_list) },
|
{ FUNC(freq_list) },
|
||||||
{ INT_RANGE(ht, 0, 1) },
|
{ INT_RANGE(ht, 0, 1) },
|
||||||
{ INT_RANGE(vht, 0, 1) },
|
{ INT_RANGE(vht, 0, 1) },
|
||||||
|
{ INT_RANGE(he, 0, 1) },
|
||||||
{ INT_RANGE(ht40, -1, 1) },
|
{ INT_RANGE(ht40, -1, 1) },
|
||||||
{ INT_RANGE(max_oper_chwidth, CONF_OPER_CHWIDTH_USE_HT,
|
{ INT_RANGE(max_oper_chwidth, CONF_OPER_CHWIDTH_USE_HT,
|
||||||
CONF_OPER_CHWIDTH_80P80MHZ) },
|
CONF_OPER_CHWIDTH_80P80MHZ) },
|
||||||
|
|
|
@ -1427,7 +1427,7 @@ static const char *network_fields[] = {
|
||||||
"bssid_accept", "psk", "proto", "key_mgmt",
|
"bssid_accept", "psk", "proto", "key_mgmt",
|
||||||
"bg_scan_period", "pairwise", "group", "auth_alg", "scan_freq",
|
"bg_scan_period", "pairwise", "group", "auth_alg", "scan_freq",
|
||||||
"freq_list", "max_oper_chwidth", "ht40", "vht", "vht_center_freq1",
|
"freq_list", "max_oper_chwidth", "ht40", "vht", "vht_center_freq1",
|
||||||
"vht_center_freq2", "ht", "edmg",
|
"vht_center_freq2", "ht", "edmg", "he",
|
||||||
#ifdef IEEE8021X_EAPOL
|
#ifdef IEEE8021X_EAPOL
|
||||||
"eap", "identity", "anonymous_identity", "password", "ca_cert",
|
"eap", "identity", "anonymous_identity", "password", "ca_cert",
|
||||||
"ca_path", "client_cert", "private_key", "private_key_passwd",
|
"ca_path", "client_cert", "private_key", "private_key_passwd",
|
||||||
|
|
Loading…
Reference in a new issue