Initial WebSocket hook up

This commit is contained in:
Alex Hultman
2018-10-29 23:06:32 +01:00
parent ab6abaf2e6
commit 1613c5020d
9 changed files with 295 additions and 2 deletions
+2
View File
@@ -28,6 +28,7 @@ struct HttpRequest;
template <bool SSL>
struct HttpContextData {
template <bool> friend struct HttpContext;
template <bool> friend struct HttpResponse;
private:
struct RouterData {
HttpResponse<SSL> *httpResponse;
@@ -35,6 +36,7 @@ private:
};
HttpRouter<RouterData> router;
void *upgradedWebSocket;
};
}