Top "Boost-asio" questions

Boost.

What does it mean to bind a multicast (UDP) socket?

I am using multicast UDP between hosts that have multiple network interfaces. I am using boost::asio, and am confused …

sockets udp bind boost-asio multicast
What is the usefulness of `enable_shared_from_this`?

I ran across enable_shared_from_this while reading the Boost.Asio examples and after reading the documentation I am …

c++ boost boost-asio tr1
How to create a thread pool using boost in C++?

How do I create a thread pool using boost in C++, and how do I assign tasks to the threadpool?

c++ boost threadpool boost-asio boost-thread
Best documentation for Boost:asio?

The documentation available on the boost website is... limited. From what I've been able to read, the general consensus is …

c++ boost boost-asio
How does libuv compare to Boost/ASIO?

I'd be interested in aspects like: scope/features performance maturity

c++ boost boost-asio libuv
Platform detection in CMake

I've added some functionality from boost::asio, which has precipitated some compiler "warnings": Please define _WIN32_WINNT or _WIN32_WINDOWS …

c++ cmake boost-asio
Boost.ASIO-based HTTP client library (like libcurl)

I am looking for a modern C++ HTTP library because libcurl's shortcomings are difficult to work around by C++ wrappers. …

c++ http curl boost-asio
Confused when boost::asio::io_service run method blocks/unblocks

Being a total beginner to Boost.Asio, I am confused with io_service::run(). I would appreciate it if someone …

c++ boost-asio
Boost error codes reference

Does anyone know where to find a reference for boost error codes. In particular, error codes returned by asynchronous socket …

c++ boost boost-asio
Copy a streambuf's contents to a string

Apparently boost::asio::async_read doesn't like strings, as the only overload of boost::asio::buffer allows me to create …

c++ string boost boost-asio streambuf