(self, pkt)
| 824 | |
| 825 | @ATMT.receive_condition(SERVING) |
| 826 | def receive_logoff_request(self, pkt): |
| 827 | if SMB2_Session_Logoff_Request in pkt: |
| 828 | raise self.NEGOTIATED().action_parameters(pkt) |
| 829 | |
| 830 | @ATMT.action(receive_logoff_request) |
| 831 | def send_logoff_response(self, pkt): |
nothing calls this directly
no test coverage detected