summaryrefslogtreecommitdiffstats
path: root/external/optick/optick_server.h
diff options
context:
space:
mode:
authorLaG1924 <12997935+LaG1924@users.noreply.github.com>2021-06-22 02:38:30 +0200
committerGitHub <noreply@github.com>2021-06-22 02:38:30 +0200
commitca7bcf9f7dc5eb47ccbec1049b323f0604dabadd (patch)
tree33d7d2673ba0da8a92323b07d061f655c719ae40 /external/optick/optick_server.h
parentMerge pull request #44 from LaG1924/fix/protocol_support (diff)
parentUpdated build instructions and added MacOS #49 (diff)
downloadAltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar.gz
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar.bz2
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar.lz
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar.xz
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.tar.zst
AltCraft-ca7bcf9f7dc5eb47ccbec1049b323f0604dabadd.zip
Diffstat (limited to 'external/optick/optick_server.h')
-rw-r--r--external/optick/optick_server.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/external/optick/optick_server.h b/external/optick/optick_server.h
deleted file mode 100644
index b44153e..0000000
--- a/external/optick/optick_server.h
+++ /dev/null
@@ -1,42 +0,0 @@
-#pragma once
-#include "optick.config.h"
-
-#if USE_OPTICK
-#include "optick_message.h"
-
-#include <mutex>
-#include <thread>
-
-namespace Optick
-{
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-class Socket;
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-class Server
-{
- InputDataStream networkStream;
-
- static const int BIFFER_SIZE = 1024;
- char buffer[BIFFER_SIZE];
-
- Socket* socket;
-
- std::recursive_mutex socketLock;
-
- Server( short port );
- ~Server();
-
- bool InitConnection();
-
-public:
- void Send(DataResponse::Type type, OutputDataStream& stream = OutputDataStream::Empty);
- void Update();
-
- string GetHostName() const;
-
- static Server &Get();
-};
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-}
-
-#endif //USE_OPTICK \ No newline at end of file