Make WebSockets benchmarkable

This commit is contained in:
Alex Hultman
2018-10-30 01:53:28 +01:00
parent eb5cd17c78
commit 292476366c
10 changed files with 100 additions and 241 deletions
+15
View File
@@ -1,4 +1,19 @@
#ifndef WEBSOCKETDATA_H
#define WEBSOCKETDATA_H
#include "WebSocketProtocol.h"
namespace uWS {
struct WebSocketData : WebSocketState<true> {
private:
public:
WebSocketData() : WebSocketState<true>() {
std::cout << "init websocket data!" << std::endl;
}
};
}
#endif // WEBSOCKETDATA_H