Lines Matching refs:status
163 status = dev[0].get_status()
164 if status['wpa_state'] != 'COMPLETED' or status['bssid'] != multi_ap_bssid:
166 if status['ssid'] != params['multi_ap_backhaul_ssid'].strip('"'):
167 … raise Exception("Unexpected SSID %s != %s" % (status['ssid'], params["multi_ap_backhaul_ssid"]))
168 if status['pairwise_cipher'] != 'CCMP':
169 raise Exception("Unexpected encryption configuration %s" % status['pairwise_cipher'])
170 if status['key_mgmt'] != 'WPA2-PSK':
173 status = hapd.request("WPS_GET_STATUS")
174 if "PBC Status: Disabled" not in status:
176 if "Last WPS result: Success" not in status:
178 if "Peer Address: " + dev[0].own_addr() not in status:
191 status = dev[1].get_status()
192 if status['wpa_state'] != 'COMPLETED' or status['bssid'] != apdev[0]['bssid']:
194 if status['ssid'] != params["ssid"]:
198 status = hapd.request("WPS_GET_STATUS")
199 if "PBC Status: Disabled" not in status:
201 if "Last WPS result: Success" not in status:
203 if "Peer Address: " + dev[1].own_addr() not in status:
214 status, buf = dev[0].cmd_execute(['iw', dev[0].ifname,
218 if status != 0: