通过引用here上的网页,我在底部使用了代码ntp客户端代码。代码接收时间信息,然后我想像201304211405一样将时间信息存储为YYYYMMDDHHMM。代码从NTP服务器接收时间信息,但是我觉得很难找出如何将该信息传递给strftime,我应该如何将接收到的时间信息传递给strftime
以下是代码的相关部分
i=recv(s,buf,sizeof(buf),0);
tmit=ntohl((time_t)buf[10]); //# get transmit time
tmit-= 2208988800U;
printf("tmit=%d\n",tmit);
//#compare to system time
printf("Time is time: %s",ctime(&tmit));
char buffer[13];
struct tm * timeinfo;
timeinfo = ctime(&tmit);
strftime (buffer,13,"%04Y%02m%02d%02k%02M",timeinfo);
printf("new buffer:%s\n" ,buffer);下面是我使用的完整代码
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
void ntpdate();
int main() {
ntpdate();
return 0;
}
void ntpdate() {
char *hostname="79.99.6.190 2";
int portno=123; //NTP is port 123
int maxlen=1024; //check our buffers
int i; // misc var i
unsigned char msg[48]={010,0,0,0,0,0,0,0,0}; // the packet we send
unsigned long buf[maxlen]; // the buffer we get back
//struct in_addr ipaddr; //
struct protoent *proto; //
struct sockaddr_in server_addr;
int s; // socket
int tmit; // the time -- This is a time_t sort of
//use Socket;
proto=getprotobyname("udp");
s=socket(PF_INET, SOCK_DGRAM, proto->p_proto);
memset( &server_addr, 0, sizeof(server_addr));
server_addr.sin_family=AF_INET;
server_addr.sin_addr.s_addr = inet_addr(hostname);
server_addr.sin_port=htons(portno);
// send the data
i=sendto(s,msg,sizeof(msg),0,(struct sockaddr *)&server_addr,sizeof(server_addr));
/***************HERE WE START**************/
// get the data back
i=recv(s,buf,sizeof(buf),0);
tmit=ntohl((time_t)buf[10]); //# get transmit time
tmit-= 2208988800U;
printf("tmit=%d\n",tmit);
//#compare to system time
printf("Time is time: %s",ctime(&tmit));
char buffer[13];
struct tm * timeinfo;
timeinfo = ctime(&tmit);
strftime (buffer,13,"%04Y%02m%02d%02k%02M",timeinfo);
printf("new buffer:%s\n" ,buffer);
}发布于 2013-04-22 02:48:13
问题出在线路上。
timeinfo = ctime(&tmit);如果timeinfo的类型为struct tm *,则不能只将其指向由ctime()返回的char *人类可读字符串。
如果您要转换为struct tm *,则需要使用gmtime()或localtime(),这取决于您希望struct tm *是UTC时间,还是相对于本地时区表示。
由于ctime()使用本地时区,我假设您希望这样,因此将该行替换为...
timeinfo = localtime(&tmit);https://stackoverflow.com/questions/16134614
复制相似问题