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

This worked in 1.28.x and is failing in 1.29. Reduced to simplest reproducer for brevity #include "asio.hpp" // NOLINT error: ‘execute’ is not a member of ‘asio::execution’ ``` #include "asio.hpp"...

Commit 5459f3b12f4c4ca4428dd611060b249ac5e52c38 broke compilation for asio/impl/read_until.hpp with `-DBOOST_ASIO_NO_DYNAMIC_BUFFER_V1`: ```console $ g++ -DBOOST_ASIO_NO_DYNAMIC_BUFFER_V1 -x c++ /usr/include/boost/asio/read_until.hpp In file included from /usr/include/boost/asio/read_until.hpp:3124: /usr/include/boost/asio/impl/read_until.hpp: In function 'std::size_t boost::asio::read_until(SyncReadStream&, DynamicBuffer_v2, const boost::basic_regex&, boost::system::error_code&, constraint_t)':...

QNX port of asio lib based on asio-1-29-0. Supported and tested by QNX7.1 and QNX8.0 on x86_64 and aarch64. The port provides two kind of changes: 1. All build releted...

```cpp #include #include using tcp_socket = asio::as_tuple_t>::as_default_on_t; std::string url_encode(std::string_view url) { std::string r; r.reserve(url.size() * 2); return r; } struct async_request_op { auto operator()(auto state) -> void { std::string_view url...

The following code fails to compile: https://godbolt.org/z/1fMMTd6xe ```C++ #include #include using namespace boost; using stream_t = asio::deferred_t::as_default_on_t; ```

I am trying to build a project with VS 2022 Professional version, But while building a project getting an error mentioned below - - **error C1083: Cannot open include file:...

When I pause my application with the debugger during some asynchronous operations, I get occasional failures with EINTR (system : Interrupted system call). I found out that previous versions of...

run code bellow,case2 failed but if comment out the case 1 code,the case 2 code: socket.async_connect(endpoint, std::bind(handle_connect, std::placeholders::_1, endpoint)); works fine. what make these two seem have conflict??? seems when...

I think we should stop developing standalone. Let the community manage it. If users can't be bothered to install Boost why should we support them? At the same time we...

hi, I want to use windows namepipe by asio, but i can't search an example or detailed guide for it