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

18 lines
286 B
C

#ifndef LLARP_PATH_H
#define LLARP_PATH_H
#include <llarp/types.h>
typedef uint64_t llarp_path_id_t;
struct llarp_transit_hop {
llarp_path_id_t id;
llarp_sharedkey_t symkey;
llarp_pubkey_t nextHop;
uint64_t started;
uint64_t lifetime;
llarp_version_t version;
};
#endif