lokinet/llarp/util/types.hpp

11 lines
245 B
C++
Raw Normal View History

2018-11-19 22:45:37 +00:00
#ifndef LLARP_TYPES_H
#define LLARP_TYPES_H
#include <cstdint>
using byte_t = uint8_t;
2018-11-19 22:45:37 +00:00
using llarp_proto_version_t = std::uint8_t;
2018-11-22 15:53:11 +00:00
using llarp_time_t = std::uint64_t;
using llarp_seconds_t = std::uint64_t;
2018-11-19 22:45:37 +00:00
#endif