From a61acf36d21522d246fb0364f0d34302037e3ff3 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Tue, 31 Mar 2015 14:11:21 -0700 Subject: osnet -> osdep --- main.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'main.cpp') diff --git a/main.cpp b/main.cpp index c78ffa89..60a03b7b 100644 --- a/main.cpp +++ b/main.cpp @@ -75,33 +75,33 @@ #include "control/NodeControlClient.hpp" #include "control/NodeControlService.hpp" -#include "osnet/NativeSocketManager.hpp" +#include "osdep/NativeSocketManager.hpp" #ifdef ZT_ENABLE_NETCONF_MASTER #include "netconf/SqliteNetworkConfigMaster.hpp" #endif // ZT_ENABLE_NETCONF_MASTER #ifdef __WINDOWS__ -#include "osnet/WindowsEthernetTapFactory.hpp" +#include "osdep/WindowsEthernetTapFactory.hpp" #define ZTCreatePlatformEthernetTapFactory (new WindowsEthernetTapFactory(homeDir)) #endif // __WINDOWS__ #ifdef __LINUX__ -#include "osnet/LinuxEthernetTapFactory.hpp" +#include "osdep/LinuxEthernetTapFactory.hpp" #define ZTCreatePlatformEthernetTapFactory (new LinuxEthernetTapFactory()) #endif // __LINUX__ #ifdef __APPLE__ -#include "osnet/OSXEthernetTapFactory.hpp" +#include "osdep/OSXEthernetTapFactory.hpp" #define ZTCreatePlatformEthernetTapFactory (new OSXEthernetTapFactory(homeDir,"tap.kext")) #endif // __APPLE__ #ifndef ZTCreatePlatformEthernetTapFactory #ifdef __BSD__ -#include "osnet/BSDEthernetTapFactory.hpp" +#include "osdep/BSDEthernetTapFactory.hpp" #define ZTCreatePlatformEthernetTapFactory (new BSDEthernetTapFactory()) #else -#error Sorry, this platform has no osnet/ implementation yet. Fork me on GitHub and add one? +#error Sorry, this platform has no osdep/ implementation yet. Fork me on GitHub and add one? #endif // __BSD__ #endif // ZTCreatePlatformEthernetTapFactory -- cgit v1.2.3