You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/include/llarp/path.h

21 lines
265 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