I2P: End-to-End encrypted and anonymous Internet https://i2pd.website/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
252 B

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