Begin path recording trials

This commit is contained in:
2022-01-03 18:18:00 +01:00
parent 107ae2d6c9
commit 3ec41a1a19
10 changed files with 235 additions and 11 deletions
+3 -3
View File
@@ -19,7 +19,7 @@
#include <string>
#include <utility>
class websocket
class Websocket
{
private:
char lastPath[513] = "";
@@ -30,8 +30,8 @@ private:
std::function<void(std::string)> toLog;
public:
explicit websocket(std::function<void(const std::string)> toLog);
~websocket();
explicit Websocket(std::function<void(const std::string)> toLog);
~Websocket();
void onClientMessageCallback(
std::shared_ptr<ix::ConnectionState> &connectionState,
ix::WebSocket &ws,