Browse Source

TDLS: Disable link to existing peer with lower address

If the previously started setup is terminated in case both peers
initiate TDLS link at more or less the same time, disable the old link
to allow the dummy station entry to be deleted from cfg80211 so that a
new entry can be added for the setup direction that will be allowed to
proceed.

Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>
Sunil Dutt 12 years ago
parent
commit
4561526f83
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/rsn_supp/tdls.c

+ 1 - 1
src/rsn_supp/tdls.c

@@ -1636,7 +1636,7 @@ skip_rsn:
 					   MACSTR " (terminate previously "
 					   "initiated negotiation",
 					   MAC2STR(src_addr));
-				wpa_tdls_peer_free(sm, peer);
+				wpa_tdls_disable_link(sm, peer->addr);
 			}
 		}
 	}