SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG
DONATE




YUM REPOSITORY

 
 

IO::Socket

Section: User Contributed Perl Documentation (3)
Updated: 2006-03-26
Index 

NAME

IO::Socket - Object interface to socket communications 

SYNOPSIS

    use IO::Socket;
 

DESCRIPTION

"IO::Socket" provides an object interface to creating and using sockets. Itis built upon the IO::Handle interface and inherits all the methods definedby IO::Handle.

"IO::Socket" only defines methods for those operations which are common to alltypes of socket. Operations which are specified to a socket in a particular domain have methods defined in sub classes of "IO::Socket"

"IO::Socket" will export all functions (and constants) defined by Socket. 

CONSTRUCTOR

new ( [ARGS] )
Creates an "IO::Socket", which is a reference to anewly created symbol (see the "Symbol" package). "new"optionally takes arguments, these arguments are in key-value pairs."new" only looks for one key "Domain" which tells new which domainthe socket will be in. All other arguments will be passed to theconfiguration method of the package for that domain, See below.

 NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE

As of VERSION 1.18 all IO::Socket objects have autoflush turned onby default. This was not the case with earlier releases.

 NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
 

METHODS

See perlfunc for complete descriptions of each of the followingsupported "IO::Socket" methods, which are just front ends for thecorresponding built-in functions:

    socket    socketpair    bind    listen    accept    send    recv    peername (getpeername)    sockname (getsockname)    shutdown

Some methods take slightly different arguments to those defined in perlfuncin attempt to make the interface more flexible. These are

accept([PKG])
perform the system call "accept" on the socket and return a newobject. The new object will be created in the same class as the listensocket, unless "PKG" is specified. This object can be used tocommunicate with the client that was trying to connect.

In a scalar context the new socket is returned, or undef uponfailure. In a list context a two-element array is returned containingthe new socket and the peer address; the list will be empty uponfailure.

The timeout in the [PKG] can be specified as zero to effect a ``poll'',but you shouldn't do that because a new IO::Select object will becreated behind the scenes just to do the single poll. This ishorrendously inefficient. Use rather true select() with a zerotimeout on the handle, or non-blocking IO.

socketpair(DOMAIN, TYPE, PROTOCOL)
Call "socketpair" and return a list of two sockets created, or anempty list on failure.

Additional methods that are provided are:

atmark
True if the socket is currently positioned at the urgent data mark,false otherwise.

    use IO::Socket;    my $sock = IO::Socket::INET->new('some_server');    $sock->read($data, 1024) until $sock->atmark;

Note: this is a reasonably new addition to the family of socketfunctions, so all systems may not support this yet. If it isunsupported by the system, an attempt to use this method willabort the program.

The atmark() functionality is also exportable as sockatmark() function:

        use IO::Socket 'sockatmark';

This allows for a more traditional use of sockatmark() as a proceduralsocket function. If your system does not support sockatmark(), the"use" declaration will fail at compile time.

connected
If the socket is in a connected state the peer address is returned.If the socket is not in a connected state then undef will be returned.
protocol
Returns the numerical number for the protocol being used on the socket, ifknown. If the protocol is unknown, as with an AF_UNIX socket, zerois returned.
sockdomain
Returns the numerical number for the socket domain type. For example, foran AF_INET socket the value of &AF_INET will be returned.
sockopt(OPT [, VAL])
Unified method to both set and get options in the SOL_SOCKET level. If calledwith one argument then getsockopt is called, otherwise setsockopt is called.
socktype
Returns the numerical number for the socket type. For example, fora SOCK_STREAM socket the value of &SOCK_STREAM will be returned.
timeout([VAL])
Set or get the timeout value associated with this socket. If called withoutany arguments then the current setting is returned. If called with an argumentthe current setting is changed and the previous value returned.
 

SEE ALSO

Socket, IO::Handle, IO::Socket::INET, IO::Socket::UNIX 

AUTHOR

Graham Barr. atmark() by Lincoln Stein. Currently maintained by thePerl Porters. Please report all bugs to <perl5-portersAATTperl.org>. 

COPYRIGHT

Copyright (c) 1997-8 Graham Barr <gbarrAATTpobox.com>. All rights reserved.This program is free software; you can redistribute it and/ormodify it under the same terms as Perl itself.

The atmark() implementation: Copyright 2001, Lincoln Stein <lsteinAATTcshl.org>.This module is distributed under the same terms as Perl itself.Feel free to use, modify and redistribute it as long as you retainthe correct attribution.


 

Index

NAME
SYNOPSIS
DESCRIPTION
CONSTRUCTOR
METHODS
SEE ALSO
AUTHOR
COPYRIGHT

This document was created byman2html,using the manual pages.
 
impreza firmowa internet katowice