mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
871c3e3281
* wintun vpn platform for windows * bundle config snippets into nsis installer for exit node, keyfile persisting, reduced hops mode. * use wintun for vpn platform * isolate all windows platform specific code into their own compilation units and libraries * split up internal libraries into more specific components * rename liblokinet.a target to liblokinet-amalgum.a to elimiate ambiguity with liblokinet.so * DNS platform for win32 * rename llarp/ev/ev_libuv.{c,h}pp to llarp/ev/libuv.{c,h}pp as the old name was idiotic * split up net platform into win32 and posix specific compilation units * rename lokinet_init.c to easter_eggs.cpp as that is what they are for and it does not need to be a c compilation target * add cmake option STRIP_SYMBOLS for seperating out debug symbols for windows builds * intercept dns traffic on all interfaces on windows using windivert and feed it into lokinet
52 lines
1.4 KiB
C++
52 lines
1.4 KiB
C++
#include "win32_platform.hpp"
|
|
#include <llarp/net/net.hpp>
|
|
|
|
namespace llarp::dns::win32
|
|
{
|
|
void
|
|
Platform::set_resolver(unsigned int index, llarp::SockAddr dns, bool)
|
|
{
|
|
#ifdef _WIN32
|
|
|
|
// clear any previous dns settings
|
|
m_UndoDNS.clear();
|
|
|
|
auto interfaces = m_Loop->Net_ptr()->AllNetworkInterfaces();
|
|
// remove dns
|
|
{
|
|
std::vector<llarp::win32::OneShotExec> jobs;
|
|
for (const auto& ent : interfaces)
|
|
{
|
|
if (ent.index == index)
|
|
continue;
|
|
jobs.emplace_back(
|
|
"netsh.exe", fmt::format("interface ipv4 delete dns \"{}\" all", ent.name));
|
|
jobs.emplace_back(
|
|
"netsh.exe", fmt::format("interface ipv6 delete dns \"{}\" all", ent.name));
|
|
}
|
|
}
|
|
// add new dns
|
|
{
|
|
std::vector<llarp::win32::OneShotExec> jobs;
|
|
for (const auto& ent : interfaces)
|
|
{
|
|
if (ent.index == index)
|
|
continue;
|
|
jobs.emplace_back(
|
|
"netsh.exe",
|
|
fmt::format("interface ipv4 add dns \"{}\" {} validate=no", ent.name, dns.asIPv4()));
|
|
jobs.emplace_back(
|
|
"netsh.exe",
|
|
fmt::format("interface ipv6 add dns \"{}\" {} validate=no", ent.name, dns.asIPv6()));
|
|
m_UndoDNS.emplace_back("netsh.exe", fmt::format("", index));
|
|
}
|
|
m_UndoDNS.emplace_back("netsh.exe", "winsock reset");
|
|
}
|
|
// flush dns
|
|
llarp::win32::Exec("ipconfig.exe", "/flushdns");
|
|
|
|
#endif
|
|
}
|
|
|
|
} // namespace llarp::dns::win32
|