Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Set some socket optionsCreate a socket (Berikutnya)
Low-level socket functions

Close down just half of a socket connection

Daftar Isi

  • shutdown SOCKET,HOW

    Shuts down a socket connection in the manner indicated by HOW, whichhas 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 otherside you're done writing but not done reading, or vice versa.It's also a more insistent form of close because it alsodisables the file descriptor in any forked copies in otherprocesses.

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

 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) Set some socket optionsCreate a socket (Berikutnya)