(self)
| 1142 | Tools.safe_close(s) |
| 1143 | |
| 1144 | def AVB(self): |
| 1145 | payload: bytes = self.generate_payload() |
| 1146 | s = None |
| 1147 | with suppress(Exception), self.open_connection() as s: |
| 1148 | for _ in range(self._rpc): |
| 1149 | sleep(max(self._rpc / 1000, 1)) |
| 1150 | Tools.send(s, payload) |
| 1151 | Tools.safe_close(s) |
| 1152 | |
| 1153 | def DGB(self): |
| 1154 | global REQUESTS_SENT, BYTES_SEND |
nothing calls this directly
no test coverage detected