forked from uNetworking/uWebSockets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
102 lines (81 loc) · 3.37 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* this is just a test example */
#include <iostream>
#include <string>
#include <thread>
using namespace std;
#include "uWS.h"
using namespace uWS;
int connections = 0;
int main()
{
try {
// set up ssl
SSLContext sslContext("/home/alexhultman/uws-connections-dropped/secrets/cert.pem",
"/home/alexhultman/uws-connections-dropped/secrets/key.pem");
// our listening server
EventSystem es(MASTER);
Server server(es, 3000, 0, 0/*, sslContext*/);
EventSystem wes(WORKER);
Server worker(wes, 0, PERMESSAGE_DEFLATE | SERVER_NO_CONTEXT_TAKEOVER | CLIENT_NO_CONTEXT_TAKEOVER, 0);
server.onUpgrade([&worker](uv_os_sock_t fd, const char *secKey, void *ssl, const char *extensions, size_t extensionsLength) {
// transfer connection to one of our worker servers
worker.upgrade(fd, secKey, ssl, extensions, extensionsLength);
});
// our working server, does not listen
worker.onConnection([](WebSocket socket) {
cout << "[Connection] clients: " << ++connections << endl;
//socket.ping();
//socket.close();
//socket.close(false, 1011, "abcd", 4);
WebSocket::Address a = socket.getAddress();
cout << a.address << endl;
cout << a.family << endl;
cout << a.port << endl;
//char message[] = "Welcome!";
//::worker->broadcast(message, sizeof(message) - 1, OpCode::TEXT);
// test shutting down the server when two clients are connected
// this should disconnect both clients and exit libuv loop
/*if (connections == 2) {
::worker->broadcast("I'm shutting you down now", 25, TEXT);
cout << "Shutting down server now" << endl;
::worker->close();
::server->close();
}*/
});
worker.onPing([](WebSocket webSocket, char *message, size_t length) {
cout << "Got a ping!" << endl;
});
worker.onPong([](WebSocket webSocket, char *message, size_t length) {
cout << "Got a pong!" << endl;
});
worker.onMessage([](WebSocket socket, char *message, size_t length, OpCode opCode) {
socket.send(message, length, opCode/*, [](WebSocket webSocket, void *data, bool cancelled) {
cout << "Sent: " << (char *) data << endl;
}, (void *) "Some callback data here"*/);
});
worker.onDisconnection([&worker, &server](WebSocket socket, int code, char *message, size_t length) {
cout << "[Disconnection] clients: " << --connections << endl;
cout << "Code: " << code << endl;
cout << "Message: " << string(message, length) << endl;
static int numDisconnections = 0;
numDisconnections++;
cout << numDisconnections << endl;
if (numDisconnections == 519) {
cout << "Closing after Autobahn test" << endl;
worker.close();
server.close();
}
});
// work on other thread
thread *t = new thread([&wes]() {
wes.run();
});
// listen on main thread
es.run();
t->join();
delete t;
} catch (...) {
cout << "ERR_LISTEN" << endl;
}
return 0;
}