Browse Source

mesh: Send peering close message before leaving mesh

This is needed to allow proper Action frame transmission to work without
having to claim these to be offchannel operations.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Jouni Malinen 10 years ago
parent
commit
4e0990dc88
1 changed files with 3 additions and 2 deletions
  1. 3 2
      wpa_supplicant/mesh.c

+ 3 - 2
wpa_supplicant/mesh.c

@@ -369,14 +369,15 @@ int wpa_supplicant_leave_mesh(struct wpa_supplicant *wpa_s)
 
 	wpa_msg(wpa_s, MSG_INFO, "leaving mesh");
 
+	/* Need to send peering close messages first */
+	wpa_supplicant_mesh_deinit(wpa_s);
+
 	ret = wpa_drv_leave_mesh(wpa_s);
 	if (ret)
 		wpa_msg(wpa_s, MSG_ERROR, "mesh leave error=%d", ret);
 
 	wpa_drv_set_operstate(wpa_s, 1);
 
-	wpa_supplicant_mesh_deinit(wpa_s);
-
 	return ret;
 }