Richard Hodges
Richard Hodges
Beast defaults the response buffer size limit to 8MB. You can increase it with a call to: ``` std::size_t required_bytes = 64 * 1024 * 1024; // 64 MB response.body_limit(required_bytes);...
great news!
We already went through the investigation of adding SOCKS support to beast. SOCKS4 is trivial. SOCKS5 (the one everyone uses) is a massive headache that requires heavy involvement and knowledge...
Please kindly share the entire command line that is being used to compile this code. Is there any way you can provide me with a minimal example on godbolt.org to...
For example: https://godbolt.org/z/z8jT5zPdj
I've just compiled this program and run it, and it worked.
I created this repo to replicate: https://github.com/beast-issues/2339 Output: ``` connected. s. {"id":1} ``` With exit code 0. Please confirm you get the same results with this program.
My apologies. For some reason I had mistakenly set the repo to "private". Please try again. https://github.com/beast-issues/2339 I copy/pasted your code and then modified the final printing step to ensure...
I think the first thing to check is basic connectivity. Is it worth augmenting the SSL stream by setting the SNI? https://github.com/boostorg/beast/blob/bd5e702c9004f2fff828735676c260972f1cd37d/example/websocket/client/sync-ssl/websocket_client_sync_ssl.cpp#L74 Just in case the instance you're talking to...
motivating use case: ref #1893