lokinet/llarp/iwp.hpp

23 lines
327 B
C++
Raw Normal View History

2018-08-10 21:34:11 +00:00
#ifndef LLARP_IWP_HPP
#define LLARP_IWP_HPP
#include <crypto.h>
2018-08-10 21:34:11 +00:00
#include <string>
2018-04-04 13:54:37 +00:00
namespace llarp {
class Logic;
struct Router;
}
struct llarp_iwp_args
{
struct llarp::Crypto* crypto;
2018-12-10 14:14:55 +00:00
llarp::Logic* logic;
struct llarp_threadpool* cryptoworker;
struct llarp::Router* router;
bool permitInbound;
2018-04-05 14:43:16 +00:00
};
2018-04-05 14:23:14 +00:00
2018-04-04 13:54:37 +00:00
#endif