20 lines
438 B
C++
20 lines
438 B
C++
#include "ClientApp.h"
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
uWS::ClientApp app({
|
|
.open = [](/*auto *ws*/) {
|
|
std::cout << "Hello and welcome to client" << std::endl;
|
|
},
|
|
.message = [](/*auto *ws, auto message*/) {
|
|
|
|
},
|
|
.close = [](/*auto *ws*/) {
|
|
std::cout << "bye" << std::endl;
|
|
}
|
|
});
|
|
|
|
app.connect("ws://localhost:3000", "protocol");
|
|
|
|
app.run();
|
|
} |