Movatterモバイル変換


[0]ホーム

URL:


functions /shutdown
(source,CPAN)
You are viewing the version of this documentation from Perl 5.41.13. This is a development version of Perl.
#shutdown SOCKET,HOW

Shuts down a socket connection in the manner indicated by HOW, which has the same interpretation as in the syscall of the same name.

shutdown($socket, 0);    # I/we have stopped reading datashutdown($socket, 1);    # I/we have stopped writing datashutdown($socket, 2);    # I/we have stopped using this socket

This is useful with sockets when you want to tell the other side you're done writing but not done reading, or vice versa. It's also a more insistent form of close because it also disables the file descriptor in any forked copies in other processes.

Returns1 for success; on error, returnsundef if the first argument is not a valid filehandle, or returns0 and sets$! for any other failure.

Perldoc Browser is maintained by Dan Book (DBOOK). Please contact him via theGitHub issue tracker oremail regarding any issues with the site itself, search, or rendering of documentation.

The Perl documentation is maintained by the Perl 5 Porters in the development of Perl. Please contact them via thePerl issue tracker, themailing list, orIRC to report any issues with the contents or format of the documentation.


[8]ページ先頭

©2009-2025 Movatter.jp