1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/include/llarp/iwp.hpp

16 lines
278 B
C++
Raw Normal View History

2018-08-10 23:34:11 +02:00
#ifndef LLARP_IWP_HPP
#define LLARP_IWP_HPP
2018-04-05 16:23:14 +02:00
#include <llarp/crypto.h>
2018-08-10 23:34:11 +02:00
#include <string>
2018-04-04 15:54:37 +02:00
struct llarp_iwp_args
{
2018-04-05 16:43:16 +02:00
struct llarp_crypto* crypto;
struct llarp_logic* logic;
struct llarp_threadpool* cryptoworker;
struct llarp_router* router;
bool permitInbound;
2018-04-05 16:43:16 +02:00
};
2018-04-05 16:23:14 +02:00
2018-04-04 15:54:37 +02:00
#endif