You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/include/llarp/service/tun.hpp

20 lines
379 B
C++

#ifndef LLARP_SERVICE_TUN_HPP
#define LLARP_SERVICE_TUN_HPP
#include <tuntap.h>
#include <llarp/service/endpoint.hpp>
namespace llarp
{
namespace service
{
struct TunEndpoint : public Endpoint
{
TunEndpoint(const std::string& ifname, llarp_router* r);
~TunEndpoint();
device* m_tunif;
};
} // namespace service
} // namespace llarp
#endif