Is the new C++11 going to contain any socket library? So that one could do something std::socket
-ish?
Seeing as how std::thread
will be added,
This is so weird that in 2020, there is still no standard for a basic OS construct as sockets in C++.
The closest I found is kissnet (Apparently exists since 2019).
It's small (~1700 lines), runs on Windows and Linux, uses OpenSSL, and requires C++ 17 (Which is a plus in my book), basically everything I needed.