diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-03-31 14:11:21 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-03-31 14:11:21 -0700 |
| commit | a61acf36d21522d246fb0364f0d34302037e3ff3 (patch) | |
| tree | 0b8e8d39c4e16f5c395282315e7dfcce2030855f /main.cpp | |
| parent | 8990fb8267b5ed5677d61a421e0dfba41e365058 (diff) | |
| download | infinitytier-a61acf36d21522d246fb0364f0d34302037e3ff3.tar.gz infinitytier-a61acf36d21522d246fb0364f0d34302037e3ff3.zip | |
osnet -> osdep
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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 |
