Home | History | Annotate | Download | only in examples

Lines Matching refs:carrier

161             summary("Could not get handover request carrier record from wpa_supplicant")
163 print("Handover request carrier record from wpa_supplicant: " + data.encode("hex"))
233 for carrier in message.carriers:
234 print("Remote carrier type: " + carrier.type)
235 if carrier.type == "application/vnd.wfa.p2p":
236 print("P2P carrier type match - send to wpa_supplicant")
237 if "OK" in wpas_report_handover(data, carrier.record, "INIT"):
296 for carrier in request.carriers:
297 print("Remote carrier type: " + carrier.type)
298 if carrier.type == "application/vnd.wfa.p2p":
299 print("P2P carrier type match - add P2P carrier record")
301 self.received_carrier = carrier.record
302 print("Carrier record:")
304 print(carrier.record.pretty())
309 print("Could not get handover select carrier record from wpa_supplicant")
311 print("Handover select carrier record from wpa_supplicant:")
324 for carrier in request.carriers:
327 print("Remote carrier type: " + carrier.type)
328 if carrier.type == "application/vnd.wfa.wsc":
329 print("WSC carrier type match - add WSC carrier record")
331 self.received_carrier = carrier.record
332 print("Carrier record:")
334 print(carrier.record.pretty())
339 print("Could not get handover select carrier record from wpa_supplicant")
341 print("Handover select carrier record from wpa_supplicant:")
556 help='do not include WPS carrier record in request')