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.
i2pd/libi2pd/Timestamp.h

20 lines
252 B
C++

#ifndef TIMESTAMP_H__
#define TIMESTAMP_H__
#include <inttypes.h>
namespace i2p
{
namespace util
{
uint64_t GetMillisecondsSinceEpoch ();
uint32_t GetHoursSinceEpoch ();
uint64_t GetSecondsSinceEpoch ();
void RequestNTPTimeSync ();
}
}
#endif