Blame README

Packit bd23c0
libnet is a collection of Perl modules which provides a simple
Packit bd23c0
and consistent programming interface (API) to the client side
Packit bd23c0
of various protocols used in the internet community.
Packit bd23c0
Packit bd23c0
For details of each protocol please refer to the RFC. RFCs
Packit bd23c0
can be found in various places on the web, for a starting
Packit bd23c0
point look at:
Packit bd23c0
Packit bd23c0
    http://www.rfc-editor.org/
Packit bd23c0
Packit bd23c0
The RFCs implemented in this distribution are
Packit bd23c0
Packit bd23c0
Net::FTP        RFC959          File Transfer Protocol
Packit bd23c0
Net::SMTP       RFC821          Simple Mail Transfer Protocol
Packit bd23c0
Net::Time       RFC867          Daytime Protocol
Packit bd23c0
Net::Time       RFC868          Time Protocol
Packit bd23c0
Net::NNTP       RFC977          Network News Transfer Protocol
Packit bd23c0
Net::POP3       RFC1939         Post Office Protocol 3
Packit bd23c0
Packit bd23c0
AVAILABILITY
Packit bd23c0
Packit bd23c0
The latest version of libnet is available from the Comprehensive Perl
Packit bd23c0
Archive Network (CPAN). To find a CPAN site near you see:
Packit bd23c0
Packit bd23c0
    http://search.cpan.org/dist/libnet/
Packit bd23c0
Packit bd23c0
The GitHub source repository can be browsed at
Packit bd23c0
Packit bd23c0
    https://github.com/steve-m-hay/perl-libnet
Packit bd23c0
Packit bd23c0
If you have a Git client, then you can checkout the latest code with
Packit bd23c0
Packit bd23c0
    git clone https://github.com/steve-m-hay/perl-libnet.git
Packit bd23c0
Packit bd23c0
DOCUMENTATION
Packit bd23c0
Packit bd23c0
See Changes for recent changes.  POD style documentation is included
Packit bd23c0
in all modules and scripts.  These are normally converted to manual
Packit bd23c0
pages and installed as part of the installation process.  You should
Packit bd23c0
also be able to use the 'perldoc' utility to extract documentation from
Packit bd23c0
the module files directly.
Packit bd23c0
Packit bd23c0
DEMOS
Packit bd23c0
Packit bd23c0
The demos directory does contain a few demo scripts. These should be
Packit bd23c0
run from the top directory like
Packit bd23c0
Packit bd23c0
    demos/smtp.self -user my-email-address -debug
Packit bd23c0
Packit bd23c0
However I do not guarantee these scripts to work.
Packit bd23c0
Packit bd23c0
SUPPORT
Packit bd23c0
Packit bd23c0
Questions about how to use this library should be directed to the
Packit bd23c0
comp.lang.perl.modules USENET Newsgroup.  Bug reports and suggestions
Packit bd23c0
for improvements can be reported on the CPAN Request Tracker at
Packit bd23c0
Packit bd23c0
    https://rt.cpan.org/Public/Bug/Report.html?Queue=libnet
Packit bd23c0
Packit bd23c0
Most of the modules in this library have an option to output a debug
Packit bd23c0
transcript to STDERR. When reporting bugs/problems please, if possible,
Packit bd23c0
include a transcript of a run.
Packit bd23c0
Packit bd23c0
INSTALLATION
Packit bd23c0
Packit bd23c0
See the INSTALL file.
Packit bd23c0
Packit bd23c0
COPYRIGHT
Packit bd23c0
Packit bd23c0
Copyright (C) 1996-2007 Graham Barr.  All rights reserved.
Packit bd23c0
Copyright (C) 2013-2017 Steve Hay.  All rights reserved.
Packit bd23c0
Packit bd23c0
LICENCE
Packit bd23c0
Packit bd23c0
This distribution is free software; you can redistribute it and/or modify it
Packit bd23c0
under the same terms as Perl itself, i.e. under the terms of either the GNU
Packit bd23c0
General Public License or the Artistic License, as specified in the LICENCE
Packit bd23c0
file.
Packit bd23c0
Packit bd23c0
Share and Enjoy!