(self, pkt)
| 491 | |
| 492 | @ATMT.receive_condition(WAIT_AUTH_REQUEST) |
| 493 | def authent_received(self, pkt): |
| 494 | # Avoid packet from other interfaces |
| 495 | if RadioTap not in pkt: |
| 496 | return |
| 497 | if Dot11Auth in pkt and pkt.addr1 == pkt.addr3 == self.mac: |
| 498 | raise self.AUTH_RESPONSE_SENT().action_parameters(pkt) |
| 499 | |
| 500 | @ATMT.action(authent_received) |
| 501 | def send_auth_response(self, pkt): |
nothing calls this directly
no test coverage detected