mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-31 23:00:11 +01:00
wifi/ap: expose OWE capability
This commit is contained in:
parent
ba299d0d0c
commit
1bae844fac
1 changed files with 4 additions and 1 deletions
|
|
@ -422,6 +422,8 @@ security_from_vardict (GVariant *security)
|
|||
flags |= NM_802_11_AP_SEC_KEY_MGMT_802_1X;
|
||||
if (g_strv_contains (array, "sae"))
|
||||
flags |= NM_802_11_AP_SEC_KEY_MGMT_SAE;
|
||||
if (g_strv_contains (array, "owe"))
|
||||
flags |= NM_802_11_AP_SEC_KEY_MGMT_OWE;
|
||||
g_free (array);
|
||||
}
|
||||
|
||||
|
|
@ -1394,7 +1396,8 @@ nm_wifi_ap_class_init (NMWifiAPClass *ap_class)
|
|||
| NM_802_11_AP_SEC_GROUP_CCMP \
|
||||
| NM_802_11_AP_SEC_KEY_MGMT_PSK \
|
||||
| NM_802_11_AP_SEC_KEY_MGMT_802_1X \
|
||||
| NM_802_11_AP_SEC_KEY_MGMT_SAE )
|
||||
| NM_802_11_AP_SEC_KEY_MGMT_SAE \
|
||||
| NM_802_11_AP_SEC_KEY_MGMT_OWE )
|
||||
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (ap_class);
|
||||
NMDBusObjectClass *dbus_object_class = NM_DBUS_OBJECT_CLASS (ap_class);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue