Mohammad Nejati
Mohammad Nejati
> Hi @ashtum, I have made a sample code but here it is not possible to send all the files(.hpp and .cpp), so can you please share you email ID...
You discard the request in this line: ```C++ template void websocket_session::run(http::request req, int timeout_value) { std::cout
You need to pass the `req` to [websocket::stream::async_accept](https://www.boost.org/doc/libs/develop/libs/beast/doc/html/beast/ref/boost__beast__websocket__stream/async_accept/overload3.html). see how it is done in this example: https://github.com/boostorg/beast/blob/develop/example/advanced/server-flex/advanced_server_flex.cpp#L509 There is more issue in your code, like here you try to do...
@britasys, please move the `struct permessage_deflate_status` to the top of `stream.hpp` and add Javadoc comments for the struct and its members. Initialize the members with default values to minimize the...
> Hi, Do I have to do anything else? No, everything looks good to me. I've delayed the merge until the Boost 1.86 release, just in case we need to...
@sdarwin, Couldn't we hard-code it to the `develop` branch for now, until this library is included in Boost?
This appears to be an issue in Asio, as the following code fails to compile: ```C++ boost::asio::async_connect( boost::beast::get_lowest_layer(*stream_).socket(), results, [](auto ec, auto endpoint) { onConnect(ec, endpoint); }); ``` A workaround...
> The odder thing is... I'm a bit surprised that explicitly specifying the return type is another valid workaround. Chris added the `is_connect_condition` type trait to resolve ambiguity in several...
This seems like an issue with the new website. Could you please open an issue here: https://github.com/boostorg/website-v2/issues In the meantime, you can use: https://original.boost.org/doc/libs/1_87_0/libs/beast/example/websocket/server/chat-multi/
> [@ashtum](https://github.com/ashtum) docs on the new website are stored in AWS S3. Although "anything is possible" with enough code I believe that out-of-the-box that service does not permit (or easily...