Questions tagged [beast-websockets]

Beast is a C++11 header-only library, part of Boost C++ library, serving as a foundation for writing inter operable networking libraries by providing low-level HTTP/1, WebSocket, and networking protocol vocabulary types and algorithms using the consistent asynchronous model of Boost.Asio. Beast Websockets deals with usage of Beast as a HTTP Websocket client/server library.

Beast HTTP/Websocket library documentation

See tag beast for Ruby on Rails forum.

See tag beast-attack for the “Browser Exploit Against SSL/TLS” is a vulnerability of the TLS 1.0 protocol discovered in 2011.

33 questions
0
votes
1 answer

Boost Async Websocket Server Issue

I've wrote an async websocket thru boost.beast. But when I try to run it, I cannot connect it. The server code like below. When I try to connect my websocket server, my chrome shows status connecting. When I debug thru VS2017, it never run into the…
vainman
  • 377
  • 1
  • 5
  • 18
0
votes
1 answer

how to avoid callback hell with boost::beast?

I'm working on an application in which I want to use boost::beast/asio. I need to receive data via a websocket connection and issue requests to a REST API at the same time. In the boost::beast websocket/HTTP async client examples it seems like the…
b20000
  • 995
  • 1
  • 12
  • 30
-1
votes
1 answer

How to use boost::aio::async_connect with lambda

I want to reliaze how to use boost::aio::async_connect with lambda. Boost version 1.68 It's really strange that I could use std::bind but not lambda. If I use std::bind, it work. But when I use lambda, it buillt failed, and said…
vainman
  • 377
  • 1
  • 5
  • 18
1 2
3