mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-29 11:05:43 +00:00
25 lines
511 B
C++
25 lines
511 B
C++
#include <llarp/time.h>
|
|
#include <chrono>
|
|
|
|
namespace llarp
|
|
{
|
|
typedef std::chrono::steady_clock Clock_t;
|
|
|
|
template < typename Res >
|
|
static llarp_time_t
|
|
time_since_epoch()
|
|
{
|
|
return std::chrono::duration_cast< Res >(
|
|
llarp::Clock_t::now().time_since_epoch())
|
|
.count();
|
|
}
|
|
|
|
} // namespace llarp
|
|
|
|
// use std::chrono because otherwise the network breaks with Daylight Savings
|
|
llarp_time_t
|
|
llarp_time_now_ms()
|
|
{
|
|
return llarp::time_since_epoch< std::chrono::milliseconds >();
|
|
}
|