2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
31#include <websocketpp/config/asio_no_tls_client.hpp>
32#include <websocketpp/client.hpp>
44 std::cout <<
"Enter Command: ";
45 std::getline(std::cin, input);
47 if (input ==
"quit") {
49 }
else if (input ==
"help") {
51 <<
"\nCommand List:\n"
52 <<
"help: Display this help text\n"
53 <<
"quit: Exit the program\n"
56 std::cout <<
"Unrecognized Command" << std::endl;
Client endpoint role based on the given config.
Namespace for the WebSocket++ project.
Client config with asio transport and TLS disabled.