All Questions
Tagged with beast-websockets http
1 question
2
votes
0
answers
481
views
Using boost::beast::websocket to send http post request
I've got the following class member
boost::beast::websocket::stream<boost::beast::tcp_stream> ws_;
which gets instantiated on class c'tor using boost::asio::io_service as parameter.
I assume ...