FIX:fixed some issues in the tcp client

This commit is contained in:
Henry Winkel
2023-08-09 15:56:35 +02:00
parent 3a195b519c
commit 27987081d7
2 changed files with 3 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ namespace DirectCommunication
std::thread Worker_;
std::atomic_bool stopWorker_;
std::atomic_bool isConnected = true;
std::atomic_bool isConnected = false;
std::function<void(std::string)> MessageHandle_ = nullptr;