(self, pkt)
| 829 | |
| 830 | @ATMT.action(receive_logoff_request) |
| 831 | def send_logoff_response(self, pkt): |
| 832 | self.update_smbheader(pkt) |
| 833 | self.send(self.smb_header.copy() / SMB2_Session_Logoff_Response()) |
| 834 | |
| 835 | @ATMT.receive_condition(SERVING) |
| 836 | def receive_setup_andx_request_in_serving(self, pkt): |
nothing calls this directly
no test coverage detected