2

我通过参考此处的网页使用底部的代码 ntp 客户端代码。YYYYMMDDHHMM代码接收时间信息然后我想存储时间信息201304211405。代码从 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);
}
4

1 回答 1

1

问题出在线路...

timeinfo = ctime(&tmit);

如果timeinfo是 type struct tm *,你不能只将它指向由 .char *返回的人类可读的字符串ctime()

如果要转换为struct tm *,则需要使用gmtime()localtime(),具体取决于您希望struct tm *是 UTC 时间,还是相对于您的本地时区表示。

由于ctime()使用本地时区,我假设你想要那样,所以用...替换该行

timeinfo = localtime(&tmit);
于 2013-04-21T18:48:12.597 回答