Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Linux/epoll 和 FreeBSD/kqueue 上,shutdown() 的工作方式如下。
shutdown(connection, SHUT_RDWR);
不幸的是,取消 connect() 操作在 Solaris/port 上不起作用。我尝试了 ioctl() 的工作原理。
ioctl(connection, I_SETSIG, S_HANGUP);
这是正确的方法吗?