lokinet/include/llarp/path.h

20 lines
255 B
C
Raw Normal View History

2018-06-18 22:03:50 +00:00
#ifndef LLARP_PATH_H
#define LLARP_PATH_H
#include <llarp/router_contact.h>
#define MAXHOPS (8)
#ifdef __cplusplus
2018-06-18 22:05:02 +00:00
extern "C" {
2018-06-18 22:03:50 +00:00
#endif
2018-06-18 22:05:02 +00:00
struct llarp_path_hops
{
struct llarp_rc routers[MAXHOPS];
size_t numHops;
};
2018-06-18 22:03:50 +00:00
#ifdef __cplusplus
}
#endif
#endif