Top "Boost-asio" questions

Boost.

Scalable server framework in C++

I am looking to write a server application in C++ that is meant to handle tens of thousands of clients …

c++ boost-asio epoll iocp scalable
How to turn URL into IP address using boost::asio?

So I need some way of turning given Protocol://URLorIP:Port string into string ip int port How to do …

c++ boost-asio ip-address resolve
EOF in async_read() in boost::asio

When the async_read_some() returns an exception of EOF does it mean the server stopped sending data or does …

c++ boost-asio tcpclient
Using SSL sockets and non-SSL sockets simultaneously in Boost.Asio?

I'm in the process of converting a library to Boost.Asio (which has worked very well so far), but I've …

c++ boost-asio
Boost async_* functions and shared_ptr's

I frequently see this pattern in code, binding shared_from_this as the first parameter to a member function and …

c++ boost boost-asio shared-ptr
Difference between `deadline_timer`and `waitable_timer` in `boost asio`

To expire a timer in 5 seconds, is there any practical difference between these two? Is any one preferable(performance, resource, …

c++ boost timer boost-asio
My server exited with code 137

I wrote a C++ server/client pair using C++11, boost::asio and HDF5. The server was running fine for a …

c++ linux boost-asio exit-code error-code
boost::asio and async SSL stream: how to detect end of data/connection close?

I'm trying to make asio and SSL friends. Everything going well, but one thing is causing inconvenience: how to detect …

ssl boost-asio
how to verify client certificates using boost::asio SSL?

Below is the code snippet for SSL context initialization and verify callback registered. If I connect SSL client with proper …

c++ boost ssl boost-asio
Using ZeroMQ together with Boost::ASIO

I've got a C++ application that is using ZeroMQ for some messaging. But it also has to provide a SGCI …

c++ sockets boost boost-asio zeromq