我需要使用gettimeofday计算一个ntp时间戳。以下是我对方法的评论。你好吗? (减去错误检查)。另外,这是一个codepad链接。
#include <unistd.h>
#include <sys/time.h>
const unsigned long EPOCH = 2208988800UL; // delta between epoch time and ntp time
const double NTP_SCALE_FRAC = 4294967295.0; // maximum value of the ntp fractional part
int main()
{
struct timeval tv;
uint64_t ntp_time;
uint64_t tv_ntp;
double tv_usecs;
gettimeofday(&tv, NULL);
tv_ntp = tv.tv_sec + EPOCH;
// convert tv_usec to a fraction of a second
// next, we multiply this fraction times the NTP_SCALE_FRAC, which represents
// the maximum value of the fraction until it rolls over to one. Thus,
// .05 seconds is represented in NTP as (.05 * NTP_SCALE_FRAC)
tv_usecs = (tv.tv_usec * 1e-6) * NTP_SCALE_FRAC;
// next we take the tv_ntp seconds value and shift it 32 bits to the left. This puts the
// seconds in the proper location for NTP time stamps. I recognize this method has an
// overflow hazard if used after around the year 2106
// Next we do a bitwise OR with the tv_usecs cast as a uin32_t, dropping the fractional
// part
ntp_time = ((tv_ntp << 32) | (uint32_t)tv_usecs);
}
答案 0 :(得分:1)
此处无需使用uint64_t
- unsigned long long
保证至少为64位宽。
您也不需要往返double
,因为NTP_SCALE_FRAC * 1000000
很容易适合unsigned long long
。
EPOCH
应该是unsigned long long
,而不是unsigned long
,因此tv.tv_sec
的添加不会回滚。
全部:
const unsigned long long EPOCH = 2208988800ULL;
const unsigned long long NTP_SCALE_FRAC = 4294967296ULL;
unsigned long long tv_to_ntp(struct timeval tv)
{
unsigned long long tv_ntp, tv_usecs;
tv_ntp = tv.tv_sec + EPOCH;
tv_usecs = (NTP_SCALE_FRAC * tv.tv_usec) / 1000000UL;
return (tv_ntp << 32) | tv_usecs;
}
答案 1 :(得分:1)
extern uint64_t tvtontp64(struct timeval *tv) {
uint64_t ntpts;
ntpts = (((uint64_t)tv->tv_sec + 2208988800u) << 32) + ((uint32_t)tv->tv_usec * 4294.967296);
return (ntpts);
}
我正在使用4294.967296而不是... 5因为它是一个与总计数0的比率需要计算 4294967296每秒滴答或4294.967296每次使用它很容易验证这个1000000 usec将是溢出[秒]滴答范围应为0到(1000000-1)。
这是一个简化,适合我的目的 唯一本地IPv6单播地址[RFC4193]