IO::Socket - Object interface to socket communications
use IO::Socket;IO::Socket provides an object interface to creating and using sockets. It is built upon theIO::Handle interface and inherits all the methods defined byIO::Handle.
IO::Socket only defines methods for those operations which are common to all types of socket. Operations which are specified to a socket in a particular domain have methods defined in sub classes ofIO::Socket
IO::Socket will export all functions (and constants) defined bySocket.
Creates anIO::Socket, which is a reference to a newly created symbol (see theSymbol package).new optionally takes arguments, these arguments are in key-value pairs.new only looks for one keyDomain which tells new which domain the socket will be in. All other arguments will be passed to the configuration method of the package for that domain, See below.
NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTEAs of VERSION 1.18 all IO::Socket objects have autoflush turned on by default. This was not the case with earlier releases.
NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTESeeperlfunc for complete descriptions of each of the following supportedIO::Socket methods, which are just front ends for the corresponding built-in functions:
socketsocketpairbindlistenacceptsendrecvpeername (getpeername)sockname (getsockname)shutdownSome methods take slightly different arguments to those defined inperlfunc in attempt to make the interface more flexible. These are
perform the system callaccept on the socket and return a new object. The new object will be created in the same class as the listen socket, unlessPKG is specified. This object can be used to communicate with the client that was trying to connect. In a scalar context the new socket is returned, or undef upon failure. In a list context a two-element array is returned containing the new socket and the peer address; the list will be empty upon failure.
Callsocketpair and return a list of two sockets created, or an empty list on failure.
Additional methods that are provided are:
Set or get the timeout value associated with this socket. If called without any arguments then the current setting is returned. If called with an argument the current setting is changed and the previous value returned.
Unified method to both set and get options in the SOL_SOCKET level. If called with one argument then getsockopt is called, otherwise setsockopt is called.
Returns the numerical number for the socket domain type. For example, for a AF_INET socket the value of &AF_INET will be returned.
Returns the numerical number for the socket type. For example, for a SOCK_STREAM socket the value of &SOCK_STREAM will be returned.
Returns the numerical number for the protocol being used on the socket, if known. If the protocol is unknown, as with an AF_UNIX socket, zero is returned.
If the socket is in a connected state the the peer address is returned. If the socket is not in a connected state then undef will be returned.
Socket,IO::Handle,IO::Socket::INET,IO::Socket::UNIX
Graham Barr. Currently maintained by the Perl Porters. Please report all bugs to <perl5-porters@perl.org>.
Copyright (c) 1997-8 Graham Barr <gbarr@pobox.com>. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
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.