(self, pkt)
| 478 | |
| 479 | @ATMT.receive_condition(WAIT_AUTH_REQUEST) |
| 480 | def probe_request_received(self, pkt): |
| 481 | # Avoid packet from other interfaces |
| 482 | if RadioTap not in pkt: |
| 483 | return |
| 484 | if Dot11ProbeReq in pkt and pkt[Dot11Elt::{'ID': 0}].info == self.ssid: |
| 485 | raise self.WAIT_AUTH_REQUEST().action_parameters(pkt) |
| 486 | |
| 487 | @ATMT.action(probe_request_received) |
| 488 | def send_probe_response(self, pkt): |
nothing calls this directly
no test coverage detected