(self, Status="STATUS_NOT_SUPPORTED")
| 787 | raise self.SERVING() |
| 788 | |
| 789 | def _ioctl_error(self, Status="STATUS_NOT_SUPPORTED"): |
| 790 | pkt = self.smb_header.copy() / SMB2_Error_Response(ErrorData=b"\xff") |
| 791 | pkt.Status = Status |
| 792 | pkt.Command = "SMB2_IOCTL" |
| 793 | self.send(pkt) |
| 794 | |
| 795 | @ATMT.state(final=1) |
| 796 | def END(self): |
no test coverage detected