mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-29 11:05:43 +00:00
20 lines
255 B
C
20 lines
255 B
C
#ifndef LLARP_PATH_H
|
|
#define LLARP_PATH_H
|
|
|
|
#include <llarp/router_contact.h>
|
|
|
|
#define MAXHOPS (8)
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct llarp_path_hops
|
|
{
|
|
struct llarp_rc routers[MAXHOPS];
|
|
size_t numHops;
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif |