mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
c3c388b6aa
does not compile
16 lines
278 B
C++
16 lines
278 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;
|
|
bool permitInbound;
|
|
};
|
|
|
|
#endif
|