Top "Boost-asio" questions

Boost.

boost::asio UDP broadcasting

I want to broadcast UDP messages to all computers in a local network using boost::asio. Working through the examples …

c++ boost udp boost-asio broadcast
Can`t really understand what the parameters for constructing tcp::resolver::query

I am starting Boost.Asio and trying to make examples given on official website work. here`s client code: using …

c++ boost boost-asio
Why do I need strand per connection when using boost::asio?

I'm reviewing HTTP Server 3 example on Boost's website. Could you guys please explain why I need strand per connection ? As …

c++ boost boost-asio
Boost error codes human-readable description

I'm catching errors in Boost Asio program like if (!error) { //do stuff } else { std::cout << "Error : " << …

c++ boost error-handling boost-asio
Poor boost.ASIO performance

I have a very simple server/client performance test using boost::asio on Windows and it seems to be performing …

c++ performance sockets boost boost-asio
C++ Boost ASIO: how to read/write with a timeout?

From reading other Stack Overflow entries and the boost::asio documentation, I've confirmed that there is no synchronous ASIO read/…

c++ sockets boost-asio
Exception running boost asio ssl example

I'm trying to run the SSL examples from boost::asio and I'm getting an "Invalid argument" exception when I run …

c++ linux boost ssl boost-asio
Most Efficient High-Performance Server Socket/Thread Design

I'm building an extremely high-performance piece of enterprise software, which will receive, handle, and respond to over 50,000 TCP requests per …

c++ sockets boost amazon-ec2 boost-asio
Boost.Asio as header-only

I want to use ASIO library from Boost in my project. Its doc say it can be header-only if regex …

c++ boost boost-asio
Async wait on file descriptor using Boost Asio

I'm trying to integrate D-Bus with my boost::asio application. D-Bus has an API that enumerates a set of Unix …

c++ boost boost-asio dbus