mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-17 15:25:35 +00:00
aaf688cf81
- RIP llarp/iwp/* and most of llarp/link
23 lines
436 B
C++
23 lines
436 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
namespace llarp
|
|
{
|
|
struct Router;
|
|
}
|
|
|
|
namespace llarp::vpn
|
|
{
|
|
struct InterfaceInfo;
|
|
class NetworkInterface;
|
|
} // namespace llarp::vpn
|
|
|
|
namespace llarp::win32::wintun
|
|
{
|
|
/// makes a new vpn interface with a wintun context given info and a router pointer
|
|
std::shared_ptr<vpn::NetworkInterface>
|
|
make_interface(const vpn::InterfaceInfo& info, Router* router);
|
|
|
|
} // namespace llarp::win32::wintun
|