mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 14:49:24 +01:00
ap: Use EAPoL over NL80211 if available
This commit is contained in:
parent
5d0f1bbb31
commit
9e8850c423
11
src/ap.c
11
src/ap.c
@ -1519,6 +1519,7 @@ static struct l_genl_msg *ap_build_cmd_start_ap(struct ap_state *ap)
|
|||||||
|
|
||||||
uint32_t dtim_period = 3;
|
uint32_t dtim_period = 3;
|
||||||
uint32_t ifindex = device_get_ifindex(ap->device);
|
uint32_t ifindex = device_get_ifindex(ap->device);
|
||||||
|
struct wiphy *wiphy = device_get_wiphy(ap->device);
|
||||||
uint32_t hidden_ssid = NL80211_HIDDEN_SSID_NOT_IN_USE;
|
uint32_t hidden_ssid = NL80211_HIDDEN_SSID_NOT_IN_USE;
|
||||||
uint32_t nl_ciphers = ie_rsn_cipher_suite_to_cipher(ap->ciphers);
|
uint32_t nl_ciphers = ie_rsn_cipher_suite_to_cipher(ap->ciphers);
|
||||||
uint32_t nl_akm = CRYPTO_AKM_PSK;
|
uint32_t nl_akm = CRYPTO_AKM_PSK;
|
||||||
@ -1538,7 +1539,7 @@ static struct l_genl_msg *ap_build_cmd_start_ap(struct ap_state *ap)
|
|||||||
if (!head_len || !tail_len)
|
if (!head_len || !tail_len)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
cmd = l_genl_msg_new_sized(NL80211_CMD_START_AP, 128 + head_len +
|
cmd = l_genl_msg_new_sized(NL80211_CMD_START_AP, 256 + head_len +
|
||||||
tail_len + strlen(ap->ssid));
|
tail_len + strlen(ap->ssid));
|
||||||
|
|
||||||
/* SET_BEACON attrs */
|
/* SET_BEACON attrs */
|
||||||
@ -1565,6 +1566,14 @@ static struct l_genl_msg *ap_build_cmd_start_ap(struct ap_state *ap)
|
|||||||
l_genl_msg_append_attr(cmd, NL80211_ATTR_WIPHY_FREQ, 4, &ch_freq);
|
l_genl_msg_append_attr(cmd, NL80211_ATTR_WIPHY_FREQ, 4, &ch_freq);
|
||||||
l_genl_msg_append_attr(cmd, NL80211_ATTR_CHANNEL_WIDTH, 4, &ch_width);
|
l_genl_msg_append_attr(cmd, NL80211_ATTR_CHANNEL_WIDTH, 4, &ch_width);
|
||||||
|
|
||||||
|
if (wiphy_get_ext_feature(wiphy,
|
||||||
|
NL80211_EXT_FEATURE_CONTROL_PORT_OVER_NL80211)) {
|
||||||
|
l_genl_msg_append_attr(cmd, NL80211_ATTR_SOCKET_OWNER, 0, NULL);
|
||||||
|
l_genl_msg_append_attr(cmd,
|
||||||
|
NL80211_ATTR_CONTROL_PORT_OVER_NL80211,
|
||||||
|
0, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
return cmd;
|
return cmd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user