benstadin

Results 47 comments of benstadin

Below is a bit more logging before and after the error occurred. The building takes pretty long, thus I hope this is enough. Otherwise I'll start again and collect the...

I got it working by replacing set_server_name with the detail implementation call (as a workaround for now): boost::system::error_code ec; boost::certify::detail::set_server_hostname(stream_.native_handle(), host, ec); if (ec) boost::throw_exception(boost::system::system_error{ec});

Thanks @djarek that all makes sense. The Java folks also have their own Java keystore (could be accessed using JNI in theory), and tools like Hashicorp's Vault might fill that...

I'm about to try this library. Just thought to mention two I found: There is Microsoft's restcpp which does also platform specific certificate checking: https://github.com/microsoft/cpprestsdk/blob/57a7ff2c0720d38bd1384c2b0b09c17a549fcbe4/Release/src/http/client/x509_cert_utilities.cpp Then there is Facebook's Folly...

+1 I‘m interested to further boost performance for multithreaded servers. This seems to be a bottle neck in my application as the connections per second do not scale beyond a...

Yes, that‘s what I actually mean. I‘ve tried some code snippets I found in one of your repos (though as I remember those snippets were from somebody else), but gave...

I‘ve found our previous conversation [1]. If I understand correctly, for maximum throughput the best would be to use something like number of CPU cores for the multi IO contexts...

As background to the question: I've a custom 3D rendering engine for indoor / outdoor maps. I'm currently using a variation of the MODIS projection to create cell indices, the...