mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
15 lines
332 B
C++
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
|