You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/pathbuilder.hpp

15 lines
332 B
C++

#ifndef LLARP_PATHFINDER_HPP_
#define LLARP_PATHFINDER_HPP_
#include <llarp/pathbuilder.h>
struct llarp_pathbuilder_context
{
struct llarp_router* router;
struct llarp_dht_context* dht;
/// copy cstr
llarp_pathbuilder_context(llarp_router* p_router,
struct llarp_dht_context* p_dht);
};
#endif