mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-11 07:10:36 +00:00
46ad8d4058
- includes are now sorted in consistent, logical order; first step in an attempt to fix the tomfoolery (no relation to Tom) brought in by include-what-you-use - shuffled around some cmake linking to simplify dependency graph - superfluous files removed
26 lines
539 B
C++
26 lines
539 B
C++
#pragma once
|
|
#include <oxen/log/format.hpp>
|
|
|
|
#include <chrono>
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
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;
|
|
using namespace oxen::log::literals;
|
|
|
|
/// convert to milliseconds
|
|
uint64_t
|
|
ToMS(Duration_t duration);
|
|
|
|
using DateClock_t = std::chrono::system_clock;
|
|
using TimePoint_t = DateClock_t::time_point;
|
|
} // namespace llarp
|
|
|
|
using llarp_time_t = llarp::Duration_t;
|