mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
11 lines
245 B
C++
11 lines
245 B
C++
#ifndef LLARP_TYPES_H
|
|
#define LLARP_TYPES_H
|
|
#include <cstdint>
|
|
|
|
using byte_t = uint8_t;
|
|
using llarp_proto_version_t = std::uint8_t;
|
|
using llarp_time_t = std::uint64_t;
|
|
using llarp_seconds_t = std::uint64_t;
|
|
|
|
#endif
|