NAME
Net::UDP - UDP sockets interface module
SYNOPSIS
use Socket; # optional
use Net::Gen; # optional
use Net::Inet; # optional
use Net::UDP;
DESCRIPTION
The Net::UDP
module provides services for UDP communications over sockets. It is layered atop the Net::Inet
and Net::Gen
modules, which are part of the same distribution.
Public Methods
The following methods are provided by the Net::UDP
module itself, rather than just being inherited from Net::Inet
or Net::Gen
.
- new
-
Usage:
$obj = new Net::UDP; $obj = new Net::UDP $host, $service; $obj = new Net::UDP \%parameters; $obj = new Net::UDP $host, $service, \%parameters; $obj = 'Net::UDP'->new(); $obj = 'Net::UDP'->new($host); $obj = 'Net::UDP'->new($host, $service); $obj = 'Net::UDP'->new(\%parameters); $obj = 'Net::UDP'->new($host, $service, \%parameters);
Returns a newly-initialised object of the given class. If called for a derived class, no validation of the supplied parameters will be performed. (This is so that the derived class can add the parameter validation it needs to the object before allowing the validation.) Otherwise, it will cause the parameters to be validated by calling its
init
method, whichNet::UDP
inherits fromNet::Inet
. In particular, this means that if both a host and a service are given, that an object will only be returned if a connect() call was successful.The examples above show the indirect object syntax which many prefer, as well as the guaranteed-to-be-safe static method call. There are occasional problems with the indirect object syntax, which tend to be rather obscure when encountered. See <URL:http://www.rosat.mpe-garching.mpg.de/mailing-lists/perl-porters/1998-01/msg01674.html> for details.
-
Usage:
$ok = $obj->PRINT(@args); $ok = print $tied_fh @args;
This method, intended to be used with tied filehandles, behaves like one of two inherited methods from the
Net::Gen
class, depending on the setting of the object parameterunbuffered_output
. If that parameter is false (the default), then the normal print() builtin is used. If that parameter is true, then each print() operation will actually result in a call to thesend
method, requiring that the object be connected or that its message is in response to its last normal recv() (with aflags
parameter of0
). The value of the $\ variable is ignored in that case, but the $, variable is still used if the@args
array has multiple elements. - READLINE
-
Usage:
$line_or_datagram = $obj->READLINE; $line_or_datagram = <TIED_FH>; $line_or_datagram = readline(TIED_FH); @lines_or_datagrams = $obj->READLINE; @lines_or_datagrams = <TIED_FH>; @lines_or_datagrams = readline(TIED_FH);
This method, intended to be used with tied filehandles, behaves like one of two inherited methods from the
Net::Gen
class, depending on the setting of the object parameterunbuffered_input
. If that parameter is false (the default), then this method does line-buffering of its input as defined by the current setting of the $/ variable. If that parameter is true, then the input records will be exact recv() datagrams, disregarding the setting of the $/ variable. Note that invoking theREADLINE
method in unbuffered mode in array context is likely to hang, since UDP sockets typically don't return EOF.
Protected Methods
none.
Known Socket Options
There are no object parameters registered by the Net::UDP
module itself.
Known Object Parameters
The following object parameters are registered by the Net::UDP
module (as distinct from being inherited from Net::Gen
or Net::Inet
):
- unbuffered_input
-
If true, the
READLINE
operation on tied filehandles will return each recv() buffer as though it were a single separate line, independently of the setting of the $/ variable. The default is false, which causes theREADLINE
interface to return lines split at boundaries as appropriate for $/. (TheREADLINE
method for tied filehandles is the<FH>
operation.) Note that calling theREADLINE
method in unbuffered mode in array context is likely to hang. - unbuffered_output
-
If true, the
PRINT
operation on tied filehandles will result in calls to the send() builtin rather than the print() builtin, as described in "PRINT" above. The default is false, which causes thePRINT
method to use the print() builtin. - unbuffered_IO
-
This object parameter's value is unreliable on
getparam
orgetparams
method calls. It is provided as a handy way to set both theunbuffered_output
andunbuffered_input
object parameters to the same value at the same time duringnew
calls.
TIESCALAR support
Tieing of scalars to a UDP handle is supported by inheritance from the TIESCALAR
method of Net::Gen
. That method only succeeds if a call to a new
method results in an object for which the isconnected
method returns true, which is why it is mentioned in regard to this module.
Example:
tie $x,'Net::UDP',0,'daytime' or die "tie to Net::UDP: $!";
$x = "\n"; $x = "\n";
print $y if defined($y = $x);
untie $x;
This is an expensive re-implementation of date
on many machines.
Each assignment to the tied scalar is really a call to the put
method (via the STORE
method), and each read from the tied scalar is really a call to the getline
method (via the FETCH
method).
TIEHANDLE support
As inherited from Net::Inet
and Net::Gen
, with the additions of unbuffered I/O options for the READLINE
and PRINT
methods.
Exports
none
AUTHOR
Spider Boardman <spider@Orb.Nashua.NH.US>