全部博文(396)
发布时间:2017-09-22 16:54:05
转载自:http://blog.csdn.net/orange1988319/article/details/8880788,做了一些补充本文参考copy博客:http://www.qiyangtech.com/bbs/read.php?tid=34,根据自己的编译环境进行了适当的修改,本人只使用ntp做客户端参考博客:http://blog.csdn.net/sailor_8318/article/details/2310459 .........【阅读全文】
发布时间:2017-09-22 16:53:52
转载自:http://blog.csdn.net/orange1988319/article/details/8880788,做了一些补充本文参考copy博客:http://www.qiyangtech.com/bbs/read.php?tid=34,根据自己的编译环境进行了适当的修改,本人只使用ntp做客户端参考博客:http://blog.csdn.net/sailor_8318/article/details/2310459 .........【阅读全文】
发布时间:2017-09-20 15:19:04
系统环境:Ubuntu 14.04.3 LTS源码:openssl-1.1.0-pre1.tar.gz交叉编译环境:arm-none-linux-gnueabi-[zhaojq@virtual-machine]# tar -xzvf openssl-1.1.0-pre1.tar.gz[zhaojq@virtual-machine]# cd openssl-1.1.0-pre1[zhaojq@virtual-machine]# sudo -i.........【阅读全文】
发布时间:2017-09-08 16:33:10
LINUX下遍历目录的核心头文件是#include <dirent.h>,方法一般是这样的:打开目录->读取->关闭目录。相关函数有:DIR *opendir(const char *dirname);struct dirent *readdir(DIR *dirp);int closedir(DIR *dirp);注意到,在读取的时候,是返回一个叫dirent的结构体,其定义是这样的:[cpp] view pla.........【阅读全文】
发布时间:2017-09-08 10:40:39
Linux C时间函数 time_t struct tm#include<time.h>关于时间的类型:time_t long型,表示从1970年1月1日到现在经过的秒数。struct tm { int tm_sec; /* 秒 – 取值区间为[0,59] */ int tm_min; .........【阅读全文】