removed pointer to server socket

This commit is contained in:
Erik Frojdh
2020-04-20 17:20:33 +02:00
parent bc389f4825
commit 8afa11ed33
2 changed files with 21 additions and 25 deletions

View File

@ -12,13 +12,14 @@ class ServerInterface;
class ClientInterface : private virtual slsDetectorDefs {
enum numberMode { DEC, HEX };
detectorType myDetectorType;
std::unique_ptr<sls::ServerSocket> server;
int portNumber{0};
sls::ServerSocket server;
std::unique_ptr<Implementation> receiver;
std::unique_ptr<std::thread> tcpThread;
int ret{OK};
int fnum{-1};
int lockedByClient{0};
int portNumber{0};
std::atomic<bool> killTcpThread{false};