()
| 527 | } |
| 528 | |
| 529 | cleanup() { |
| 530 | for (const uid of this._sockets.keys()) |
| 531 | this.socketClosed({ uid }); |
| 532 | } |
| 533 | |
| 534 | async socketRequested({ uid, host, port }: SocksSocketRequestedPayload): Promise<void> { |
| 535 | debugLogger.log('socks', `[${uid}] => request ${host}:${port}`); |
nothing calls this directly
no test coverage detected