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

Using the multicast example server, I can get it to receive messages sent to the multicast group. But if I send direct UDP messages to ip_address:30001, the server doesn't receive...

Hello, Trying to setup and test the TLS offload through Kernel TLS using: - Boost: 1.78 - OpenSSL 3.0.2 - TLS: 1.2 Everything is working fine after setting the native...

In newer versions of MSVC a number of warning numbers which are disabled in this header are removed so builds using boost asio gets spammed with "there is no warning...

IOCP is supported, the linux new io_uring API is more like IOCP than epoll. any plans on supporting this new and really fast API? io_uring supports eventfd, socket, and regular...

*@Belgorodsky commented on Aug 26, 2018, 6:34 PM UTC:* In the documentation of 1.68.0 here: [https://www.boost.org/doc/libs/1_68_0/doc/html/boost_asio/reference/ip__address/make_address.html](https://www.boost.org/doc/libs/1_68_0/doc/html/boost_asio/reference/ip__address/make_address.html) "**ip::address::make_address**" in the title, but "**ip::make_address**" expected one *This issue was moved by [chriskohlhoff](https://github.com/chriskohlhoff)...

The contents of the Android.bp file are as follows: libasio_srcs = [ "src/asio.cpp", "src/asio_ssl.cpp", ] cc_defaults { name: "libasio_defaults", rtti: true, cppflags: [ "-std=c++11", "-fexceptions", "-Wall", "-Werror", "-fexceptions", // "-DBOOST_THREAD_DONT_USE_CHRONO",...

The error category needs a UUID, as in the second constructor in https://www.boost.org/doc/libs/1_79_0/libs/system/doc/html/system.html#ref_constructors This ensures the categories are not based on comparing object addresses. For instance, without a UUID, simple...

*@easyeagel commented on Jan 27, 2021, 7:18 AM UTC:* #include #include #include int main() { boost::asio::io_context ioc; boost::asio::io_context::strand strand(ioc); boost::asio::spawn(strand, [](boost::asio::yield_context yield)->void { ``` } ); ``` } this simple...

*@cryptocode commented on May 27, 2018, 10:03 PM UTC:* The April update of Windows 10 includes AF_UNIX (domain sockets) support, and asio should support it. BOOST_ASIO_HAS_LOCAL_SOCKETS would thus be true...

This PR resolves this issue: https://github.com/chriskohlhoff/asio/issues/1025 Running into an issue with cancelling a timer and it seems like we get into an infinite loop in cancel_timer() (timer_queue.hpp). Based on this...