#include "platform.hpp" #ifdef _WIN32 #include "win32.hpp" #endif #ifdef __linux__ #ifdef ANDROID #include "android.hpp" #else #include "linux.hpp" #endif #endif #include namespace llarp::vpn { const llarp::net::Platform* IRouteManager::Net_ptr() const { return llarp::net::Platform::Default_ptr(); } std::shared_ptr MakeNativePlatform(llarp::Context* ctx) { (void)ctx; std::shared_ptr plat; #ifdef _WIN32 plat = std::make_shared(ctx); #endif #ifdef __linux__ #ifdef ANDROID plat = std::make_shared(ctx); #else plat = std::make_shared(); #endif #endif #ifdef __APPLE__ throw std::runtime_error{"not supported"}; #endif return plat; } } // namespace llarp::vpn