Net::Config - Local configuration data for libnet

NAME SYNOPSYS DESCRIPTION METHODS NetConfig VALUES NAME Net::Config - Local configuration data for libnet SYNOPSYS use Net::Config qw(%NetConfig); DESCRIPTION Net::Config holds configuration data for the modules in the libnet distribution. During installation you will be asked for these values. The configuration data is held globally in a file in the perl installation tree, but a user may override any of these values by providing their own. This can be done by having a .libnetrc file in thei

syscall

syscall NUMBER, LIST Calls the system call specified as the first element of the list, passing the remaining elements as arguments to the system call. If unimplemented, raises an exception. The arguments are interpreted as follows: if a given argument is numeric, the argument is passed as an int. If not, the pointer to the string value is passed. You are responsible to make sure a string is pre-extended long enough to receive any result that might be written into a string. You can't use a strin

File::Spec::Win32 - methods for Win32 file specs

NAME SYNOPSIS DESCRIPTIONNote For File::Spec::Win32 Maintainers COPYRIGHT SEE ALSO NAME File::Spec::Win32 - methods for Win32 file specs SYNOPSIS require File::Spec::Win32; # Done internally by File::Spec if needed DESCRIPTION See File::Spec::Unix for a documentation of the methods provided there. This package overrides the implementation of these methods, not the semantics. devnull Returns a string representation of the null device. tmpdir Returns a string representation of the first ex

IO::Uncompress::Unzip - Read zip files/buffers

NAME SYNOPSIS DESCRIPTION Functional Interfaceunzip $input_filename_or_reference => $output_filename_or_reference [, OPTS] Notes Optional Parameters Examples OO InterfaceConstructor Constructor Options Examples Methodsread read getline getc ungetc inflateSync getHeaderInfo tell eof seek binmode opened autoflush input_line_number fileno close nextStream trailingData Importing EXAMPLESWorking with Net::FTP Walking through a zip file Unzipping a complete zip file to disk SEE ALSO AUTHOR

perlwin32 - Perl under Windows

NAME SYNOPSIS DESCRIPTIONSetting Up Perl on Windows Building Testing Perl on Windows Installation of Perl on Windows Usage Hints for Perl on Windows Running Perl Scripts Miscellaneous Things BUGS AND CAVEATS ACKNOWLEDGEMENTS AUTHORS SEE ALSO HISTORY NAME perlwin32 - Perl under Windows SYNOPSIS These are instructions for building Perl under Windows 2000 and later. DESCRIPTION Before you start, you should glance through the README file found in the top-level directory to which the Perl distri

TAP::Harness - Run test scripts with statistics

NAME VERSION DESCRIPTION SYNOPSIS METHODSClass Methods Instance Methods CONFIGURINGPlugins Module::Build ExtUtils::MakeMaker prove WRITING PLUGINS SUBCLASSINGMethods REPLACING SEE ALSO NAME TAP::Harness - Run test scripts with statistics VERSION Version 3.35 DESCRIPTION This is a simple test harness which allows tests to be run and results automatically aggregated and output to STDOUT. SYNOPSIS use TAP::Harness; my $harness = TAP::Harness->new( \%args ); $harness->runtests(@tests);

ExtUtils::Command - utilities to replace common UNIX commands in Makefiles etc.

NAME SYNOPSIS DESCRIPTIONFUNCTIONS SEE ALSO AUTHOR NAME ExtUtils::Command - utilities to replace common UNIX commands in Makefiles etc. SYNOPSIS perl -MExtUtils::Command -e cat files... > destination perl -MExtUtils::Command -e mv source... destination perl -MExtUtils::Command -e cp source... destination perl -MExtUtils::Command -e touch files... perl -MExtUtils::Command -e rm_f files... perl -MExtUtils::Command -e rm_rf directories... perl -MExtUtils::Command -e mkpath directories... per

fcntl

fcntl FILEHANDLE,FUNCTION,SCALAR Implements the fcntl(2) function. You'll probably have to say use Fcntl; first to get the correct constant definitions. Argument processing and value returned work just like ioctl below. For example: use Fcntl; fcntl($filehandle, F_GETFL, $packed_return_buffer) or die "can't fcntl F_GETFL: $!"; You don't have to check for defined on the return from fcntl. Like ioctl, it maps a 0 return from the system call into "0 but true" in Perl. This string is true in

Test::Simple - Basic utilities for writing tests.

NAME SYNOPSIS DESCRIPTION EXAMPLE CAVEATS NOTES HISTORY SEE ALSO AUTHORS MAINTAINERS COPYRIGHT NAME Test::Simple - Basic utilities for writing tests. SYNOPSIS use Test::Simple tests => 1; ok( $foo eq $bar, 'foo is bar' ); DESCRIPTION ** If you are unfamiliar with testing read Test::Tutorial first! ** This is an extremely simple, extremely basic module for writing tests suitable for CPAN modules and other pursuits. If you wish to do more complicated testing, use the Test::More module (a d

getprotobynumber

getprotobynumber NUMBER