* Stop the proxy server.
()
| 21 | * Stop the proxy server. |
| 22 | */ |
| 23 | public stop(): void { |
| 24 | if (this._proxyServer) { |
| 25 | this._proxyServer.then((server) => server.close()) |
| 26 | this._proxyServer = undefined |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * Create a socket proxy for TLS sockets. If it is not a TLS socket the |
no test coverage detected