|
@@ -46,7 +46,9 @@
|
|
#include <sys/wait.h>
|
|
#include <sys/wait.h>
|
|
#include <netinet/in.h>
|
|
#include <netinet/in.h>
|
|
#include <arpa/inet.h>
|
|
#include <arpa/inet.h>
|
|
|
|
+#ifndef ZT_SDK
|
|
#include <net/route.h>
|
|
#include <net/route.h>
|
|
|
|
+#endif
|
|
#include <net/if.h>
|
|
#include <net/if.h>
|
|
#ifdef __BSD__
|
|
#ifdef __BSD__
|
|
#include <net/if_dl.h>
|
|
#include <net/if_dl.h>
|
|
@@ -109,6 +111,7 @@ struct _RTE
|
|
#ifdef __BSD__ // ------------------------------------------------------------
|
|
#ifdef __BSD__ // ------------------------------------------------------------
|
|
#define ZT_ROUTING_SUPPORT_FOUND 1
|
|
#define ZT_ROUTING_SUPPORT_FOUND 1
|
|
|
|
|
|
|
|
+#ifndef ZT_SDK
|
|
static std::vector<_RTE> _getRTEs(const InetAddress &target,bool contains)
|
|
static std::vector<_RTE> _getRTEs(const InetAddress &target,bool contains)
|
|
{
|
|
{
|
|
std::vector<_RTE> rtes;
|
|
std::vector<_RTE> rtes;
|
|
@@ -243,6 +246,7 @@ static std::vector<_RTE> _getRTEs(const InetAddress &target,bool contains)
|
|
|
|
|
|
return rtes;
|
|
return rtes;
|
|
}
|
|
}
|
|
|
|
+#endif
|
|
|
|
|
|
static void _routeCmd(const char *op,const InetAddress &target,const InetAddress &via,const char *ifscope,const char *localInterface)
|
|
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
|
|
* Linux default route override implies asymmetric routes, which then
|
|
* trigger Linux's "martian packet" filter. */
|
|
* trigger Linux's "martian packet" filter. */
|
|
|
|
|
|
|
|
+#ifndef ZT_SDK
|
|
bool ManagedRoute::sync()
|
|
bool ManagedRoute::sync()
|
|
{
|
|
{
|
|
#ifdef __WINDOWS__
|
|
#ifdef __WINDOWS__
|
|
@@ -519,6 +524,7 @@ bool ManagedRoute::sync()
|
|
|
|
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
+#endif
|
|
|
|
|
|
void ManagedRoute::remove()
|
|
void ManagedRoute::remove()
|
|
{
|
|
{
|
|
@@ -562,4 +568,4 @@ void ManagedRoute::remove()
|
|
_applied.clear();
|
|
_applied.clear();
|
|
}
|
|
}
|
|
|
|
|
|
-} // namespace ZeroTier
|
|
|
|
|
|
+} // namespace ZeroTier
|