asio icon indicating copy to clipboard operation
asio copied to clipboard

Asio C++ Library

Results 318 asio issues
Sort by recently updated
recently updated
newest added

As of Boost 1.80, throwing an exception within a stackful coroutine results in a segfault. In previous releases, the exception would be transported to `asio::io_context::run` and rethrown there. Example program...

Heya Chris, I had an idea: make `error_code` & `exception_ptr` completion tokens, so that the following is legal: ```cpp asio::steady_timer tim{co_await asio::this_coro::executor}; asio::error_code ec; co_await tim.async_wait(ec); ``` This would make...

We need a wrapper that type-erases an asynchronous handler and bundles its associated executor and allocator. This would prevent the forcing of higher-level networking libraries to be header-only. ~~It would...

Hi, I have some code that returns a `thread_pool` but copy elision is not possible. It seems that `thread_pool` does not have a move constructor. It is possible to support...

Someone had already opened this and the issue was ultimately that they had binaries compiled with C++17 and non-C++17 interacting. I was compiling everything against C++17. The issue is in:...

I'm looking for something that provides the functionality of a one-shot channel or the `std::promise/future` pair but is asynchronously awaitable. I know this can be done using the regular `channel`,...

`asio::ip::tcp::resolver::async_resolve` resolves names in-order on Windows, I.E. multiple name resolutions do not take place at a given time. As I suspected, `getaddrinfo` is used in a worker thread in the...

I reviewed a project prepared with Boost asio, I'm planning to switch to Boost ASIO by abandoning the use of Windows Overlapped IOCP due to too many functional errors. Project...

https://github.com/chriskohlhoff/asio/blob/147f7225a96d45a2807a64e443177f621844e51c/asio/include/asio/ip/network_v4.hpp#L54 The above is a constructor that allows constructing a network_v4 object from an address and a subnet mask. The constructor has some non-trivial parsing code to ensure that the...

*@new-commer commented on Sep 24, 2019, 1:04 PM UTC:* I'm using boost::asio::ssl in my server , i have a problem . Sometimes it didn't send the data to peer(I checked...