通过调用 shutdown 和 close 来关闭套接字
Posted
技术标签:
【中文标题】通过调用 shutdown 和 close 来关闭套接字【英文标题】:Close a socket by call both shutdown and close 【发布时间】:2017-03-16 12:22:33 【问题描述】:我看到一段这样的代码,是用来关闭一个socket的。
`//a TCP socket is created: sockfd
struct linger ling;
ling.l_onoff = 1;
ling.l_linger = 0;
setsockopt(sockfd, SOL_SOCKET, SO_LINGER, &ling, sizeof(ling));
......
//when need to close the socket
if(sockfd>0)
shutdown(sockfd, SHUT_RDWR);
close(sockfd);
else
//some error message
`
我有三个问题:
-
为什么需要同时调用shutdown和close来关闭socket?从 Wireshark 看,好像会发送一个 FIN,然后发送一个 RST。
这样可以避免TIME_WAIT状态吗?
关闭 sockfd 时,文件描述符是否仍然可用?调用关闭函数时没有发生错误。
【问题讨论】:
关于shutdown() vs close() vs both的讨论在这里:***.com/questions/4160347/close-vs-shutdown-socket 【参考方案1】:为什么需要同时调用shutdown和close来关闭socket?
通常你不会。我知道的唯一例外是如果您继承了套接字,或者子进程有,并且您想确保现在发送 FIN。或者,如果您想与对等方进行 FIN 交换协议,以确保双方同时到达流的末尾,这涉及关闭然后读取。不像上面那样。
这样可以避免TIME_WAIT状态吗?
没有。
shutdown sockfd时,文件描述符还可用吗?
是的。
【讨论】:
以上是关于通过调用 shutdown 和 close 来关闭套接字的主要内容,如果未能解决你的问题,请参考以下文章
socket链接的关闭连接与close和shutdown的区别