免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
123
最近访问板块 发新帖
楼主: shiva
打印 上一主题 下一主题

连接断开,socket connect反复下去,socket描述符消耗全部消耗掉了。 [复制链接]

论坛徽章:
0
21 [报告]
发表于 2007-06-06 15:20 |只看该作者
解决~.~。
connect不成功也要close() !!!!!!!
TIME_WAIT不用管,不影响重用socket descriptor。


总结一下:
调用新的socket()不需要memset()。
SO_REUSEADDR不需要。
shutdown只是关闭通信。不是关闭描述符。关闭描述符要close()。

总之不论在socket通信的任何阶段,该连接出现任何错误都要close。
我一直都是only shutdown socket的。
~.~大家笑话我吧,

论坛徽章:
0
22 [报告]
发表于 2007-06-06 17:31 |只看该作者
总之不论在socket通信的任何阶段,该连接出现任何错误都要close。

打開的socket跟你是否用它沒有關係,跟它是否連接到遠程也沒有關係。都要close。

论坛徽章:
0
23 [报告]
发表于 2007-06-07 14:12 |只看该作者
写程序都不按照正常模式走,老是突发奇想会出问题的。

论坛徽章:
0
24 [报告]
发表于 2007-06-08 10:27 |只看该作者
默认一个进程的FD是 0~1023,一般来说够用了。

  1. #include <stdio.h>
  2. #include <errno.h>
  3. #include <sys/types.h>
  4. #include <sys/socket.h>

  5. int main(int argc,char *argv[])
  6. {
  7.         int i;
  8.         int sk;
  9.         int sa[1027];

  10.         for(i = 3;i < 1027;i ++)
  11.         {
  12.                 if((sk = socket(AF_INET,SOCK_STREAM,0)) == -1)
  13.                         perror("socket");
  14.                 else
  15.                 {
  16.                         sa[i] = sk;
  17.                         printf("fd[%d] = %d\n",i,sk);
  18.                 }
  19.                 /* 超过默认数FD,则关闭掉以重用,所以上面的socket调用应当不会返回错误才对! */
  20.                 if( i >= 1023)
  21.                 {
  22.                         printf("close(%d)\n",sk);
  23.                         close(sk);
  24.                 }
  25.         }
  26.         return 0;
  27. }

复制代码

另附 close()  的 部分manpage:

close() closes a file descriptor, so that it no longer refers to any file and may be reused.Any record locks (see fcntl(2)) held on the file it was associated with, and owned by the process, are removed (regardless of the file descriptor that was used to obtain the lock).

If fd is the last copy of a particular file descriptor the resources associated with it are freed; if the descriptor was the last reference to a file which has been removed using unlink(2) the file is deleted.

[ 本帖最后由 shello 于 2007-6-8 11:02 编辑 ]

论坛徽章:
0
25 [报告]
发表于 2007-06-08 10:40 |只看该作者
我败给各位了。。。。

论坛徽章:
0
26 [报告]
发表于 2007-06-08 15:32 |只看该作者
TIME_WAIT是socket的状态应该不影响可用文件描述符个数吧!

close后检查下返回码试试?

论坛徽章:
0
27 [报告]
发表于 2007-06-08 16:22 |只看该作者
试试系统调用 dup() ,会返回一个比较小的可用的fd

论坛徽章:
0
28 [报告]
发表于 2007-06-08 16:28 |只看该作者
原帖由 shiva 于 2007-6-8 10:40 发表
我败给各位了。。。。

论坛徽章:
0
29 [报告]
发表于 2007-06-08 16:36 |只看该作者
原帖由 while(1) 于 2007-6-8 16:28 发表



答案是远在天边,近在眼前~
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP