i2pd/libi2pd/Timestamp.h

20 lines
252 B
C
Raw Normal View History

2013-10-27 19:29:34 +04:00
#ifndef TIMESTAMP_H__
#define TIMESTAMP_H__
#include <inttypes.h>
namespace i2p
{
namespace util
{
2018-11-14 19:06:53 +03:00
uint64_t GetMillisecondsSinceEpoch ();
uint32_t GetHoursSinceEpoch ();
uint64_t GetSecondsSinceEpoch ();
2013-10-27 19:29:34 +04:00
2018-11-14 19:06:53 +03:00
void RequestNTPTimeSync ();
2013-10-27 19:29:34 +04:00
}
}
#endif