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/llarp/path/path_types.hpp

17 lines
287 B
C++

#ifndef LLARP_PATH_TYPES_HPP
#define LLARP_PATH_TYPES_HPP
#include <crypto/constants.hpp>
#include <util/aligned.hpp>
namespace llarp
{
struct PathID_t final : public AlignedBuffer<PATHIDSIZE>
{
using Hash = AlignedBuffer<PATHIDSIZE>::Hash;
};
} // namespace llarp
#endif