mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
6f055eca4f
to rebase to rebase
16 lines
281 B
C
16 lines
281 B
C
#ifndef LLARP_IWP_H_
|
|
#define LLARP_IWP_H_
|
|
#include <llarp/crypto.h>
|
|
#include "router.hpp"
|
|
|
|
struct llarp_iwp_args
|
|
{
|
|
struct llarp_crypto* crypto;
|
|
struct llarp_logic* logic;
|
|
struct llarp_threadpool* cryptoworker;
|
|
struct llarp_router* router;
|
|
const char* keyfile;
|
|
};
|
|
|
|
#endif
|