lokinet/include/llarp/iwp.hpp

16 lines
279 B
C++
Raw Normal View History

2018-08-10 21:34:11 +00:00
#ifndef LLARP_IWP_HPP
#define LLARP_IWP_HPP
2018-04-05 14:23:14 +00:00
#include <llarp/crypto.h>
2018-08-10 21:34:11 +00:00
#include <string>
2018-04-04 13:54:37 +00:00
struct llarp_iwp_args
{
2018-04-05 14:43:16 +00:00
struct llarp_crypto* crypto;
struct llarp_logic* logic;
struct llarp_threadpool* cryptoworker;
struct llarp_router* router;
2018-08-10 21:34:11 +00:00
std::string keyfile;
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