geeeek
geeeek

Reputation: 415

how to keep on websocket on boost::beast?

I referenced here documents about boost::beast websocket-async.

I removed "ws_.async_close(websocket::close_code::normal..." on on_read function in order to avoid disconnection.

But beast websocket is disconnected by ending on_read.

std::make_shared<session>(ios)->run(host, port, text);
ios.run(); // I want to keep running it until explicit calling close.

Upvotes: 1

Views: 547

Answers (1)

sehe
sehe

Reputation: 392833

Replace the code

    // Close the WebSocket connection
    ws_.async_close(websocket::close_code::normal,
        std::bind(
            &session::on_close,
            shared_from_this(),
            std::placeholders::_1));

with the logic you want. What do you want to happen instead? Do you want to read more? Then do another read like above:

    // Read a message into our buffer

Upvotes: 1

Related Questions