1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/iwp.hpp
Jeff Becker be234e4b6e
* make format
* snode to snode direct traffic

* wire up dns on service node tun
2018-12-13 11:14:44 -05:00

23 lines
343 B
C++

#ifndef LLARP_IWP_HPP
#define LLARP_IWP_HPP
#include <crypto.h>
#include <string>
namespace llarp
{
class Logic;
struct Router;
} // namespace llarp
struct llarp_iwp_args
{
struct llarp::Crypto* crypto;
llarp::Logic* logic;
struct llarp_threadpool* cryptoworker;
struct llarp::Router* router;
bool permitInbound;
};
#endif