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

`asio::detail::winsock_init` initalizes winsock with v2.0. Not sure whether this makes any difference for asio and the world in general, I just think it's a good idea to default to the...

Add missing colon symbol in ssl/stream.hpp example code. Ps. I'm also not sure about the default context in your example, should that not be a client context (eg. `boost::asio::ssl::context::tlsv12_client`)? But...

On FreeBSD, sockets received from capsicum processes will return ENOTCAPABLE on ioctls. In this scenario, fcntl() is the preferred approach to put the file descriptor in non-blocking mode. Furthermore, nested...

The current ASIO socket implementation on QNX uses two different processes for communication. The io_pkt (or in newer version io_sock) and the pipe daemon. Involving additional daemons in basic communication...

The current ASIO socket implementation on QNX uses two different processes for communication. The io_pkt (or in newer version io_sock) and the pipe daemon. Involving additional daemons in basic communication...

As a maintainer of the asio spack package, my life would be easier if asio releases were using the [GitHub release feature](https://docs.github.com/en/repositories/releasing-projects-on-github/about-releases) instead of just creating a new tag. It...

When tried to run a TSAN test for reading a file at different offsets using **async_read_some_at** function , it gives warning that a data race occurring in **boost::asio::detail::io_uring_service::io_queue::set_result**. Any idea...

This fails: ``` #include #include #include #include #include #include namespace asio = boost::asio; int main() { asio::io_context ctx; asio::post(asio::deferred)( asio::bind_executor( ctx.get_executor(), asio::bind_allocator( std::allocator(), []{} ) )); } ``` https://godbolt.org/z/Kv7s1vx6n