diff options
author | Joseph Henry <josephjah@gmail.com> | 2018-08-01 17:17:04 -0700 |
---|---|---|
committer | Joseph Henry <josephjah@gmail.com> | 2018-08-01 17:17:04 -0700 |
commit | e01c0adff28602d48ad6f0d618bee072ec7843da (patch) | |
tree | c87196b149f64830ef544cfc6f2a65c81e6b1f09 /osdep/ManagedRoute.cpp | |
parent | e75a093a8cd004856788032a3eb977c98359e9a6 (diff) | |
download | infinitytier-e01c0adff28602d48ad6f0d618bee072ec7843da.tar.gz infinitytier-e01c0adff28602d48ad6f0d618bee072ec7843da.zip |
Added ifdef checks to omit some ManagedRoute code in SDK builds
Diffstat (limited to 'osdep/ManagedRoute.cpp')
-rw-r--r-- | osdep/ManagedRoute.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/osdep/ManagedRoute.cpp b/osdep/ManagedRoute.cpp index 324fada0..453d810a 100644 --- a/osdep/ManagedRoute.cpp +++ b/osdep/ManagedRoute.cpp @@ -46,7 +46,9 @@ #include <sys/wait.h> #include <netinet/in.h> #include <arpa/inet.h> +#ifndef ZT_SDK #include <net/route.h> +#endif #include <net/if.h> #ifdef __BSD__ #include <net/if_dl.h> @@ -109,6 +111,7 @@ struct _RTE #ifdef __BSD__ // ------------------------------------------------------------ #define ZT_ROUTING_SUPPORT_FOUND 1 +#ifndef ZT_SDK static std::vector<_RTE> _getRTEs(const InetAddress &target,bool contains) { std::vector<_RTE> rtes; @@ -243,6 +246,7 @@ static std::vector<_RTE> _getRTEs(const InetAddress &target,bool contains) return rtes; } +#endif static void _routeCmd(const char *op,const InetAddress &target,const InetAddress &via,const char *ifscope,const char *localInterface) { @@ -409,6 +413,7 @@ static bool _winHasRoute(const NET_LUID &interfaceLuid, const NET_IFINDEX &inter * Linux default route override implies asymmetric routes, which then * trigger Linux's "martian packet" filter. */ +#ifndef ZT_SDK bool ManagedRoute::sync() { #ifdef __WINDOWS__ @@ -519,6 +524,7 @@ bool ManagedRoute::sync() return true; } +#endif void ManagedRoute::remove() { @@ -562,4 +568,4 @@ void ManagedRoute::remove() _applied.clear(); } -} // namespace ZeroTier +} // namespace ZeroTier
\ No newline at end of file |