netcan / asyncio

asyncio is a c++20 library to write concurrent code using the async/await syntax.
MIT License
812 stars 80 forks source link

[Feature Request] TLS Support? #7

Open volundmush opened 2 years ago

volundmush commented 2 years ago

Greetings and also AWESOME WORK @netcan I have been wondering why C++ doesn't have a library like this - been struggling with ASIO. Turns out, it DOES have a library like this I just hadn't heard of it.

One thing that Python Asyncio has going for it that seems to be missing, though, is TLS support. I know adding that isn't easy, but figure it should be on the TODO list of any project like this.

Or, is it more common these days to use tools like stunnel ? I've found TLS outside of Python to be very finnicky to setup.

netcan commented 2 years ago

yes, I will consider it later, I have many works to do currently.

ghost commented 2 years ago

I really need this feature. thanks.