linux socket
Johnblx
征实则效存,徇名则功浅
展开
-
unix domain socketIPC and internet socket
There is a big diference bween the two socket.The Unix domain socket just copy the data from one process to another process.It does not through the TCP/UDP and IP layer, so there is no packagi原创 2013-03-05 14:09:56 · 825 阅读 · 0 评论 -
linux send 函数
http://bbs.csdn.net/topics/390701657原创 2014-02-08 11:03:23 · 1977 阅读 · 0 评论 -
linux socket listen函数
摘要:listen函数使用主动连接套接口变为被连接套接口,使得一个进程可以接受其它进程的请求,从而成为一个服务器进程。在TCP服务器编程中listen函数把进程变为一个服务器,并指定相应的套接字变为被动连接。listen函数在一般在调用bind之后-调用accept之前调用,它的函数原型是:#includeint listen(int sockfd, int bac转载 2014-02-11 10:32:20 · 2047 阅读 · 0 评论 -
TCP UDP recv recvfrom
对于这两个函数里面的参数 len只是说,接收socket buffer里面的数据所使用的buffer的大小,如果这个buffer大于数据的大小,是可以的。不会引起阻塞。翻译 2014-04-02 16:59:53 · 1116 阅读 · 0 评论 -
linux 句柄数设置
shell级限制 通过ulimit -n修改,如执行命令ulimit -n 1000,则表示将当前shell的当前用户所有进程能打开的最大文件数量设置为1000.用户级限制 ulimit -n是设置当前shell的当前用户所有进程能打开的最大文件数量,但是一个用户可能会同时通过多个shell连接到系统,所以还有一个针对用户的限制,通过修改 /etc/security/limits.conf实现...转载 2018-09-28 19:33:49 · 1097 阅读 · 0 评论