lokinet/include/llarp/iwp.hpp
2018-08-10 17:34:11 -04:00

16 lines
279 B
C++

#ifndef LLARP_IWP_HPP
#define LLARP_IWP_HPP
#include <llarp/crypto.h>
#include <string>
struct llarp_iwp_args
{
struct llarp_crypto* crypto;
struct llarp_logic* logic;
struct llarp_threadpool* cryptoworker;
struct llarp_router* router;
std::string keyfile;
};
#endif