Documentation work

This commit is contained in:
Vinnie Falco
2017-06-04 17:25:55 -07:00
parent a1848f09ce
commit af47128f0b
60 changed files with 2094 additions and 2608 deletions
+4
View File
@@ -5,6 +5,8 @@
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
//[websocket_example_client_echo
#include <beast/core.hpp>
#include <beast/websocket.hpp>
#include <boost/asio.hpp>
@@ -33,3 +35,5 @@ int main()
ws.close(beast::websocket::close_code::normal);
std::cout << beast::buffers(b.data()) << "\n";
}
//]