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

``` #include #include #include #include #include #include // class bar; class foo : public std::enable_shared_from_this { public: foo() : cycle_timer_(io_), cycle_(2000) { } ~foo() { std::cout

Added a full main method example snippet to the Timer.5 tutorial to ensure the source code can be replicated and compiled successfully like the other Boost Asio tutorial examples without...

https://github.com/llvm/llvm-project/commit/21f73d5826fb5024a27eaacafadfa316f58949c5 https://live.boost.org/doc/libs/1_85_0/boost/asio/detail/config.hpp ``` #if !defined(BOOST_ASIO_HAS_STD_ALIGNED_ALLOC) # if !defined(BOOST_ASIO_DISABLE_STD_ALIGNED_ALLOC) # if (__cplusplus >= 201703) # if defined(__clang__) # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX) # if (_LIBCPP_STD_VER > 14) && defined(_LIBCPP_HAS_ALIGNED_ALLOC) \ && !defined(_LIBCPP_MSVCRT) &&...

When running my application with boost 1.84.0 , on windows 10, VS 2022 MSVC 17.x with a debugger attached I have discovered this exception that is thrown constantly. I don't...

*@audaki commented on Sep 12, 2020, 1:07 PM UTC:* 3 Years ago we have developed a small (TLS 1.2+ only) HTTPs server for our web application. We are using Boost...

file: throttling_proxy.cpp build : vs2022,Release,x86,WinSDK10.0.22621.0,C++ latest asio:1.30.2 see https://github.com/kahotv/crush_destroy_coro_3.git crash when using /Ob2 and /Od Will not crash when using /Ob2 and /O2 1. run ProxyServer.exe(examples\cpp20\coroutines\echo_server.cpp) 2. run ConnectClient.exe ![image](https://github.com/chriskohlhoff/asio/assets/41276366/686e1901-a68c-4ffb-a52b-a1bf015bacde)

Hello, I got dozens of questions when cross compile Asio for VxWorks.Like below: `liuyu@liuyu-virtual-machine:~/Cross-Compile/asio$ make Making all in include make[1]: into directory “/home/liuyu/Cross-Compile/asio/include” make[1]: leave directory “/home/liuyu/Cross-Compile/asio/include” Making all in...

The move/assignment operator of `asio::ssl::detail::engine` looks as follows: https://github.com/chriskohlhoff/asio/blob/12e0ce9e0500bf0f247dbd1ae894272656456079/asio/include/asio/ssl/detail/impl/engine.ipp#L99-L109 We take over `ssl_` and `ext_bio_` from `other` and reset them in `other`, but we simply overwrite our own members without...

The enumeration type is defined as: ``` enum ssl_errors { // Error numbers are those produced by openssl. }; inline boost::system::error_code make_error_code(ssl_errors e); ``` I get that errors belonging to...