mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-17 15:25:35 +00:00
21 lines
331 B
C++
21 lines
331 B
C++
#ifndef LLARP_IWP_HPP
|
|
#define LLARP_IWP_HPP
|
|
#include <llarp/crypto.h>
|
|
#include <string>
|
|
|
|
namespace llarp {
|
|
class Logic;
|
|
struct Router;
|
|
}
|
|
|
|
struct llarp_iwp_args
|
|
{
|
|
struct llarp::Crypto* crypto;
|
|
llarp::Logic* logic;
|
|
struct llarp_threadpool* cryptoworker;
|
|
struct llarp::Router* router;
|
|
bool permitInbound;
|
|
};
|
|
|
|
#endif
|