1. 免费SSL证书申请https://www.startssl.com教程:http://hxs.fd.fj.cn/?action=show&id=132. 证书转换申请到的证书有两个关键文件(适用于openssl文本格式), xxx.key & xxx.crt,要在IIS上安装需要转换成pfx格...
分类:
Web程序 时间:
2014-08-01 10:47:01
阅读次数:
197
mkstemp fd, name = tempfile.mkstemp 创建临时文件,并且将文件打开 >>>?import?tempfile
>>>?tempfile.mkstemp()
(3,?‘/tmp/tmpkgWSR1‘) 查看/tmp目录,看到已经生成了真实的文件 lsof查询打开的临时文件 ...
分类:
其他好文 时间:
2014-07-30 15:08:14
阅读次数:
254
linux提供了select、poll、epoll接口来实现IO复用,三者的原型如下所示,本文从参数、实现、性能等方面对三者进行对比。int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct t...
分类:
其他好文 时间:
2014-07-29 20:41:12
阅读次数:
338
http://blog.csdn.net/sunboy_2050/article/details/6126712select用法#include #include #include #include int select(int n, fd_set *readfds, fd_set *writ...
分类:
其他好文 时间:
2014-07-29 20:38:45
阅读次数:
384
struct pollfd2010年04月15日 星期四 下午 03:59int poll (struct pollfd *fds, size_t nfds , int timeout);struct pollfd {int fd; /* 文件描述符 */short events; /* 等待的事....
分类:
其他好文 时间:
2014-07-29 17:30:22
阅读次数:
288
这是文件I/O的常用函数,open函数,open函数用来打开一个设备,他返回的是一个整型变量,如果这个值等于-1,说明打开文件出现错误,如果为大于0的值,那么这个值代表的就是文件描述符。一般的写法是if((fd=open("...
分类:
其他好文 时间:
2014-07-29 16:09:29
阅读次数:
290
判断/home下有没有文件aaa.txt,如果存在则提示错误,如果文件不存在则创建且文件最终权限为644。#include<stdio.h>
#include<fcntl.h>
intmain(void){
intfd;
fd=open("/home/aaa.txt",O_WRONLY|O_CREAT|O_EXCL,0666);
if(fd==-1)
printf("Error:Fileexists.\n");..
分类:
系统相关 时间:
2014-07-29 16:01:59
阅读次数:
328
??1.函数介绍 close(关闭文件) 相关函数 open,fcntl,shutdown,unlink,fclose 表头文件 #include 定义函数 int close(int fd); 函数说明 当使用完文件后若已不再需...
分类:
系统相关 时间:
2014-07-29 14:17:39
阅读次数:
391
#include ssize_t read(int fd, void *buf, size_t count);DESCRIPTION read() attempts to read up to count bytes from file descriptor fd into the buffer.....
分类:
其他好文 时间:
2014-07-28 23:56:34
阅读次数:
548
1.0 先执行如下命令:lsof -i:端口号1.1 会有类似下面的结果:COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAMEWebProces 42624 davidzhang 5u I...
分类:
其他好文 时间:
2014-07-28 19:09:44
阅读次数:
230