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);
残念ながら、Solaris/port では connect() 操作をキャンセルすることはできません。ioctl() が動作することを試しました。
ioctl(connection, I_SETSIG, S_HANGUP);
これは正しい方法ですか?