#include #ifdef _WIN32 #include "win32.hpp" #endif #ifdef __linux__ #ifdef ANDROID #include "android.hpp" #else #include "linux.hpp" #endif #endif #include namespace llarp::vpn { std::shared_ptr MakeNativePlatform(llarp::Context* ctx) { (void)ctx; std::shared_ptr plat; #ifdef _WIN32 plat = std::make_shared(); #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