#ifndef LLARP_IWP_H_ #define LLARP_IWP_H_ #include #include #include #include #ifdef __cplusplus extern "C" { #endif struct iwp_configure_args { struct llarp_alloc * mem; struct llarp_ev_loop * ev; struct llarp_crypto* crypto; const char * keyfile; }; void iwp_link_init(struct llarp_link* link, struct iwp_configure_args args, struct llarp_msg_muxer* muxer); #ifdef __cplusplus } #endif #endif