Socket
say_high
这个作者很懒,什么都没留下…
展开
-
getopt()简介
http://www.cnblogs.com/sunyubo/archive/2010/09/17/2282120.html 函数getopt()用来分析命令行参数,其函数原型和相关变量声明如下: #include extern char *optarg; extern int optind, // 初始化值为1,下一次调用getopt时,从optind存储的位置重新开始转载 2013-07-20 16:32:22 · 445 阅读 · 0 评论 -
Linux下nanosleep函数详解
nanosleep函数 int nanosleep(const struct timespec *req, struct timespec *rem); struct timespec { time_t tv_sec; /* seconds */转载 2013-07-30 15:36:37 · 2476 阅读 · 0 评论 -
Socket代理转发小记
http://www.linuxso.com/architecture/13498.html 本地转发代码forward.py #!/usr/bin/env python import os import socket import select import SocketServer import sys import paramiko def verbo转载 2013-08-02 20:29:49 · 737 阅读 · 0 评论 -
poll()
http://blog.csdn.net/b_fushuaibing/article/details/5356085 # include sys/ poll. h> int poll ( struct pollfd * fds, unsigned int nfds, int timeout) ; 和select()不一样,poll()没有使用低效 的三个基于位的文件描述转载 2013-07-29 09:26:43 · 543 阅读 · 0 评论 -
Linux exec函数族
http://linux.chinaitlab.com/c/837370.html 说是exec系统调用,实际上在Linux中,并不存在一个exec()的函数形式,exec指的是一组函数,一共有6个,分别是: #include extern char **environ; int execl(const char *path, const char转载 2013-07-29 09:54:10 · 485 阅读 · 0 评论