mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
be234e4b6e
* snode to snode direct traffic * wire up dns on service node tun
24 lines
343 B
C++
24 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
|