The Wayback Machine - https://web.archive.org/web/20150911210448/http://perldoc.perl.org:80/functions/shutdown.html

Perl version

Modules

  • ABCDE
  • FGHIL
  • MNOPS
  • TUX

shutdown

Perl 5 version 22.0 documentation

Please note: Many features of this site require JavaScript. You appear to have JavaScript disabled, or are running a non-JavaScript capable web browser.

To get the best experience, please enable JavaScript or download a modern web browser such as Internet Explorer 8, Firefox, Safari, or Google Chrome.

Recently read

shutdown

  • 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.

    1. shutdown(SOCKET, 0); # I/we have stopped reading data
    2. shutdown(SOCKET, 1); # I/we have stopped writing data
    3. shutdown(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.

    Returns 1 for success; on error, returns undef if the first argument is not a valid filehandle, or returns 0 and sets $! for any other failure.

 
Morty Proxy This is a proxified and sanitized view of the page, visit original site.