|
@@ -258,7 +258,7 @@ static void mesh_mpm_send_plink_action(struct wpa_supplicant *wpa_s,
|
|
|
|
|
|
/* aid */
|
|
|
if (type == PLINK_CONFIRM)
|
|
|
- wpabuf_put_le16(buf, sta->peer_lid);
|
|
|
+ wpabuf_put_le16(buf, sta->aid);
|
|
|
|
|
|
/* IE: supp + ext. supp rates */
|
|
|
pos = hostapd_eid_supp_rates(bss, supp_rates);
|
|
@@ -561,13 +561,19 @@ static struct sta_info * mesh_mpm_add_peer(struct wpa_supplicant *wpa_s,
|
|
|
update_ht_state(data, sta);
|
|
|
#endif /* CONFIG_IEEE80211N */
|
|
|
|
|
|
+ if (hostapd_get_aid(data, sta) < 0) {
|
|
|
+ wpa_msg(wpa_s, MSG_ERROR, "No AIDs available");
|
|
|
+ ap_free_sta(data, sta);
|
|
|
+ return NULL;
|
|
|
+ }
|
|
|
+
|
|
|
/* insert into driver */
|
|
|
os_memset(¶ms, 0, sizeof(params));
|
|
|
params.supp_rates = sta->supported_rates;
|
|
|
params.supp_rates_len = sta->supported_rates_len;
|
|
|
params.addr = addr;
|
|
|
params.plink_state = sta->plink_state;
|
|
|
- params.aid = sta->peer_lid;
|
|
|
+ params.aid = sta->aid;
|
|
|
params.listen_interval = 100;
|
|
|
params.ht_capabilities = sta->ht_capabilities;
|
|
|
params.flags |= WPA_STA_WMM;
|