mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
26 lines
425 B
C
26 lines
425 B
C
#ifndef LLARP_IWP_H_
|
|
#define LLARP_IWP_H_
|
|
#include <llarp/crypto.h>
|
|
#include <llarp/link.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct llarp_iwp_args
|
|
{
|
|
struct llarp_crypto* crypto;
|
|
struct llarp_logic* logic;
|
|
struct llarp_threadpool* cryptoworker;
|
|
struct llarp_router* router;
|
|
const char* keyfile;
|
|
};
|
|
|
|
void
|
|
iwp_link_init(struct llarp_link* link, struct llarp_iwp_args args);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|