Roman Snegirev

Results 9 comments of Roman Snegirev

This issue (asyncio "TLS in TLS" connections) is well describes here: https://github.com/aio-libs/aiohttp/discussions/6044, https://github.com/aio-libs/aiohttp/issues/2722, https://github.com/romis2012/python-socks/issues/10, https://github.com/romis2012/python-socks/issues/4, https://bugs.python.org/issue37179, https://github.com/encode/httpx/issues/1434, https://github.com/encode/httpcore/issues/254 This feature is planned to be added (with known limitations) in the...

If it helps in any way, we have added secure proxies support in the latest version of [httpx-socks](https://github.com/romis2012/httpx-socks)

`proxy_ssl` argument added in version 0.8.0

Please provide **minimal** reproducer and **full** backtrace

The minimal working example (taken from [here](https://github.com/bamthomas/aioimaplib)) ```python async def connect(loop, protocol_factory, host, port, ssl_context): proxy = Proxy.create( proxy_type=ProxyType.SOCKS5, host='127.0.0.1', port=7771, loop=loop, ) sock = await proxy.connect(dest_host=host, dest_port=port) await loop.create_connection(protocol_factory,...

I provided the working example, take it as a basis

This project is not supported, use [aiohttp-socks](https://github.com/romis2012/aiohttp-socks)