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/util/types.hpp

20 lines
371 B
C++

#pragma once
#include <cstdint>
#include <string>
#include <chrono>
using byte_t = uint8_t;
using llarp_proto_version_t = std::uint8_t;
namespace llarp
{
using Duration_t = std::chrono::milliseconds;
using namespace std::literals;
/// convert to milliseconds
uint64_t
ToMS(Duration_t duration);
} // namespace llarp
using llarp_time_t = llarp::Duration_t;