发布时间:2014-05-13 21:47:27
man console_codes在命令行下也能产生五颜六色的字体和图案,只需要加上一些颜色代码,例如 echo -e "\033[41;36m红底绿字\033[0m" 其中41的位置代表底色, 36的位置是代表字的颜色 那些ascii code 是对颜色调用的. \033[ ; m …… .........【阅读全文】
发布时间:2014-05-13 21:44:07
IP报头结构: //定义IP首部typedef struct _iphdr{unsigned char h_lenver; //4 位IP版本号+4位首部长度unsigned char tos; //8位服务类型TOSunsigned short total_len; //16位IP包总长度(字节)unsigned short ide.........【阅读全文】
发布时间:2014-04-11 18:07:19
函数原型: #include int daemon(int nochdir, int noclose);参数: 输入:nochdir 如果值为0,则将切换工作目录为根目录,否则为程序的工作目录 noclose.........【阅读全文】