summaryrefslogtreecommitdiff
path: root/node/IpcConnection.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/IpcConnection.hpp')
-rw-r--r--node/IpcConnection.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/node/IpcConnection.hpp b/node/IpcConnection.hpp
index b73198cd..f08d27cb 100644
--- a/node/IpcConnection.hpp
+++ b/node/IpcConnection.hpp
@@ -88,11 +88,16 @@ private:
void (*_handler)(void *,IpcConnection *,IpcConnection::EventType,const char *);
void *_arg;
#ifdef __WINDOWS__
- volatile HANDLE _sock;
+ HANDLE _sock;
+ std::string _writeBuf;
+ bool _incoming;
#else
volatile int _sock;
#endif
Mutex _writeLock;
+ Thread _thread;
+ volatile bool _run;
+ volatile bool _running;
};
} // namespace ZeroTier