buftvtots.c

来自「网络时间协议NTP 源码 版本v4.2.0b 该源码用于linux平台下」· C语言 代码 · 共 36 行

C
36
字号
/* * buftvtots - pull a Unix-format (struct timeval) time stamp out of *	       an octet stream and convert it to a l_fp time stamp. *	       This is useful when using the clock line discipline. */#ifdef HAVE_CONFIG_H#include "config.h"#endif#include "ntp_fp.h"#include "ntp_string.h"#include "ntp_unixtime.h"intbuftvtots(	const char *bufp,	l_fp *ts	){	struct timeval tv;	/*	 * copy to adhere to alignment restrictions	 */	memcpy(&tv, bufp, sizeof(tv));	/*	 * and use it	 */	ts->l_ui = tv.tv_sec + (u_long)JAN_1970;	if (tv.tv_usec > 999999)	    return 0;	TVUTOTSF(tv.tv_usec, ts->l_uf);	return 1;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?