2018-11-19 22:45:37 +00:00
|
|
|
#ifndef LLARP_TYPES_H
|
|
|
|
#define LLARP_TYPES_H
|
|
|
|
#include <cstdint>
|
2020-02-22 21:39:21 +00:00
|
|
|
#include <string>
|
2020-02-24 19:40:45 +00:00
|
|
|
#include <chrono>
|
2018-11-19 22:45:37 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
using byte_t = uint8_t;
|
2018-11-19 22:45:37 +00:00
|
|
|
using llarp_proto_version_t = std::uint8_t;
|
2020-02-24 19:40:45 +00:00
|
|
|
|
2020-02-25 17:05:13 +00:00
|
|
|
using llarp_time_t = std::chrono::milliseconds;
|
2018-11-19 22:45:37 +00:00
|
|
|
|
2020-02-22 21:39:21 +00:00
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
using namespace std::literals;
|
|
|
|
}
|
|
|
|
|
2018-11-19 22:45:37 +00:00
|
|
|
#endif
|