hoyhoy
hoyhoy
We need this for our application.
*Boost 1.84* `libs/beast/example/http/server/async-ssl/http_server_async_ssl.cpp` appears to have a number of issues. (1) Seems to not be thread-safe... ``` # server... ulimit -n 100000 && ./http_server_async_ssl 127.0.0.1 9092 . 17 WARNING: ThreadSanitizer:...
```` ================================================================= ==redis-server==47364==ERROR: LeakSanitizer: detected memory leaks Direct leak of 206 byte(s) in 5 object(s) allocated from: #0 0x10a41ee27 in realloc (/opt/llvm18/lib/darwin/libclang_rt.asan_osx_dynamic.dylib:x86_64+0x92e27) #1 0x1085a51fe in ztryrealloc_usable_internal (redis-server:x86_64+0x1000511fe) #2 0x1085a52a0 in...
Specify library name and version: **libcurl/*** Bump to c-ares/1.28.1. --- - [X] I've read the [contributing guidelines](https://github.com/conan-io/conan-center-index/blob/master/CONTRIBUTING.md). - [X] I've used a [recent](https://github.com/conan-io/conan/releases/latest) Conan client version close to the [currently...
**google-cloud-cpp/all** There are various problems with warning as errors. I'm already ignoring.... ``` -Wno-dangling-reference -Wno-elaborated-type-specifier -Wno-deprecated-declarations -Wno-elaborated-type-specifier ``` This is the latest issues... ``` internal/streaming_subscription_batch_source.cc:141:29: error: redundant move in initialization...
If I use the default digest from ruby/3.4.7, all the digests work. But I had `digest` in my `Gemfile`, bundler updated it and all of the `hexdigest` failed... ` Digest::SHA512::metadata...
We have an async reader defined like this... ``` read_result = _stream->async_read_some( boost::asio::buffer(buf, len), boost::asio::use_future([&, this_connection](boost::beast::error_code ec, std::size_t n) { set_errno(ec.value()); _sync_read_rc = ec; return ec.value() ? 0 : n;...