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

16 lines
239 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 >
{
};
} // namespace llarp
#endif