lokinet/llarp/pathbuilder.hpp

18 lines
384 B
C++
Raw Normal View History

2018-06-18 22:03:50 +00:00
#ifndef LLARP_PATHFINDER_HPP_
#define LLARP_PATHFINDER_HPP_
#include <llarp/pathbuilder.h>
struct llarp_pathbuilder_context : public llarp::path::PathSet
2018-06-18 22:03:50 +00:00
{
struct llarp_router* router;
struct llarp_dht_context* dht;
/// construct
2018-06-18 22:03:50 +00:00
llarp_pathbuilder_context(llarp_router* p_router,
struct llarp_dht_context* p_dht);
void
BuildOne();
2018-06-18 22:03:50 +00:00
};
#endif