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
Jeff Becker c3c388b6aa
remove iwp and start on curvecp
does not compile
2018-09-02 14:25:42 -04:00

15 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