mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 01:20:07 +01:00
libnm: allow WPA-EAP-SUITE-B-192 network to match existing connections
Signed-off-by: Tomohiro Mayama <parly-gh@iris.mystia.org> https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/1050
This commit is contained in:
parent
afb25afa8f
commit
7377df2f2d
1 changed files with 10 additions and 0 deletions
|
|
@ -300,6 +300,16 @@ nm_setting_wireless_ap_security_compatible(NMSettingWireless *s_wireless
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
/* WPA3 Enterprise Suite B 192 */
|
||||
if (!strcmp(key_mgmt, "wpa-eap-suite-b-192")) {
|
||||
if (!(ap_rsn & NM_802_11_AP_SEC_KEY_MGMT_EAP_SUITE_B_192)) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/* Since NetworkManager doesn't handle GCMP-256 directly, cipher check can be skipped */
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue