mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
da22f306e0
* fix bug in iwp that caused crash
18 lines
384 B
C++
18 lines
384 B
C++
#ifndef LLARP_PATHFINDER_HPP_
|
|
#define LLARP_PATHFINDER_HPP_
|
|
#include <llarp/pathbuilder.h>
|
|
|
|
struct llarp_pathbuilder_context : public llarp::path::PathSet
|
|
{
|
|
struct llarp_router* router;
|
|
struct llarp_dht_context* dht;
|
|
/// construct
|
|
llarp_pathbuilder_context(llarp_router* p_router,
|
|
struct llarp_dht_context* p_dht);
|
|
|
|
void
|
|
BuildOne();
|
|
};
|
|
|
|
#endif
|