2
0
Adam Ierymenko 11 жил өмнө
parent
commit
2e46bb4264

+ 4 - 4
ipc/IpcConnection.hpp

@@ -28,10 +28,10 @@
 #ifndef ZT_IPCCONNECTION_HPP
 #define ZT_IPCCONNECTION_HPP
 
-#include "Constants.hpp"
-#include "Thread.hpp"
-#include "NonCopyable.hpp"
-#include "Mutex.hpp"
+#include "../node/Constants.hpp"
+#include "../node/Thread.hpp"
+#include "../node/NonCopyable.hpp"
+#include "../node/Mutex.hpp"
 
 #ifdef __WINDOWS__
 #include <WinSock2.h>

+ 3 - 3
ipc/IpcListener.hpp

@@ -28,9 +28,9 @@
 #ifndef ZT_IPCLISTENER_HPP
 #define ZT_IPCLISTENER_HPP
 
-#include "Constants.hpp"
-#include "Thread.hpp"
-#include "NonCopyable.hpp"
+#include "../node/Constants.hpp"
+#include "../node/Thread.hpp"
+#include "../node/NonCopyable.hpp"
 #include "IpcConnection.hpp"
 
 #include <string>

+ 4 - 0
ipc/NodeControlClient.cpp

@@ -29,6 +29,10 @@
 
 #include "../node/Constants.hpp"
 #include "../node/Utils.hpp"
+#include "../node/Defaults.hpp"
+
+#include "IpcConnection.hpp"
+#include "IpcListener.hpp"
 
 namespace ZeroTier {