Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Close down just half of a sock ...Create a pair of sockets (Berikutnya)
Low-level socket functions

Create a socket

Daftar Isi

  • socket SOCKET,DOMAIN,TYPE,PROTOCOL

    Opens a socket of the specified kind and attaches it to filehandleSOCKET. DOMAIN, TYPE, and PROTOCOL are specified the same as forthe syscall of the same name. You should use Socket firstto get the proper definitions imported. See the examples inSockets: Client/Server Communication in perlipc.

    On systems that support a close-on-exec flag on files, the flag willbe set for the newly opened file descriptor, as determined by thevalue of $^F. See $^F in perlvar.

 
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) Close down just half of a sock ...Create a pair of sockets (Berikutnya)