|
@@ -583,6 +583,29 @@ void wpa_mesh_new_mesh_peer(struct wpa_supplicant *wpa_s, const u8 *addr,
|
|
|
if (ssid && ssid->no_auto_peer) {
|
|
|
wpa_msg(wpa_s, MSG_INFO, "will not initiate new peer link with "
|
|
|
MACSTR " because of no_auto_peer", MAC2STR(addr));
|
|
|
+ if (data->mesh_pending_auth) {
|
|
|
+ struct os_reltime age;
|
|
|
+ const struct ieee80211_mgmt *mgmt;
|
|
|
+ struct hostapd_frame_info fi;
|
|
|
+
|
|
|
+ mgmt = wpabuf_head(data->mesh_pending_auth);
|
|
|
+ os_reltime_age(&data->mesh_pending_auth_time, &age);
|
|
|
+ if (age.sec < 2 &&
|
|
|
+ os_memcmp(mgmt->sa, addr, ETH_ALEN) == 0) {
|
|
|
+ wpa_printf(MSG_DEBUG,
|
|
|
+ "mesh: Process pending Authentication frame from %u.%06u seconds ago",
|
|
|
+ (unsigned int) age.sec,
|
|
|
+ (unsigned int) age.usec);
|
|
|
+ os_memset(&fi, 0, sizeof(fi));
|
|
|
+ ieee802_11_mgmt(
|
|
|
+ data,
|
|
|
+ wpabuf_head(data->mesh_pending_auth),
|
|
|
+ wpabuf_len(data->mesh_pending_auth),
|
|
|
+ &fi);
|
|
|
+ }
|
|
|
+ wpabuf_free(data->mesh_pending_auth);
|
|
|
+ data->mesh_pending_auth = NULL;
|
|
|
+ }
|
|
|
return;
|
|
|
}
|
|
|
|