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.
 
 
 
 
 

19 lines
252 B

#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