diff options
author | Jouni Malinen <jouni@qca.qualcomm.com> | 2017-09-26 14:36:33 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2017-09-26 14:40:02 (GMT) |
commit | 61a56c14800922328e4dc29bf4b70ff0ea51c7d3 (patch) | |
tree | 98dd00e2af91340065dcdf9c0765e5d45d22e48f /wpa_supplicant/sme.c | |
parent | 0ad5893a2f1f521d44712cd395e067ccf0a397c3 (diff) | |
download | hostap-61a56c14800922328e4dc29bf4b70ff0ea51c7d3.zip hostap-61a56c14800922328e4dc29bf4b70ff0ea51c7d3.tar.gz hostap-61a56c14800922328e4dc29bf4b70ff0ea51c7d3.tar.bz2 |
Add group_mgmt network parameter for PMF cipher selection
The new wpa_supplicant network parameter group_mgmt can be used to
specify which group management ciphers (AES-128-CMAC, BIP-GMAC-128,
BIP-GMAC-256, BIP-CMAC-256) are allowed for the network. If not
specified, the current behavior is maintained (i.e., follow what the AP
advertises). The parameter can list multiple space separate ciphers.
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Diffstat (limited to 'wpa_supplicant/sme.c')
-rw-r--r-- | wpa_supplicant/sme.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wpa_supplicant/sme.c b/wpa_supplicant/sme.c index a4d5f75..a92fb45 100644 --- a/wpa_supplicant/sme.c +++ b/wpa_supplicant/sme.c @@ -1227,6 +1227,7 @@ void sme_associate(struct wpa_supplicant *wpa_s, enum wpas_mode mode, params.wpa_ie_len = wpa_s->sme.assoc_req_ie_len; params.pairwise_suite = wpa_s->pairwise_cipher; params.group_suite = wpa_s->group_cipher; + params.mgmt_group_suite = wpa_s->mgmt_group_cipher; params.key_mgmt_suite = wpa_s->key_mgmt; params.wpa_proto = wpa_s->wpa_proto; #ifdef CONFIG_HT_OVERRIDES |