mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
0708a0d897
probably does not work
41 lines
690 B
C++
41 lines
690 B
C++
|
|
#include <llarp/ev/vpn.hpp>
|
|
|
|
#ifdef _WIN32
|
|
#include "win32.hpp"
|
|
#endif
|
|
#ifdef __linux__
|
|
#ifdef ANDROID
|
|
#include "android.hpp"
|
|
#else
|
|
#include "linux.hpp"
|
|
#endif
|
|
#endif
|
|
|
|
#include <exception>
|
|
|
|
namespace llarp::vpn
|
|
{
|
|
std::shared_ptr<Platform>
|
|
MakeNativePlatform(llarp::Context* ctx)
|
|
{
|
|
(void)ctx;
|
|
std::shared_ptr<Platform> plat;
|
|
#ifdef _WIN32
|
|
plat = std::make_shared<vpn::Win32Platform>();
|
|
#endif
|
|
#ifdef __linux__
|
|
#ifdef ANDROID
|
|
plat = std::make_shared<vpn::AndroidPlatform>(ctx);
|
|
#else
|
|
plat = std::make_shared<vpn::LinuxPlatform>();
|
|
#endif
|
|
#endif
|
|
#ifdef __APPLE__
|
|
throw std::runtime_error{"not supported"};
|
|
#endif
|
|
return plat;
|
|
}
|
|
|
|
} // namespace llarp::vpn
|