Blame README

Packit a83d8b
IO::Socket::INET6
Packit a83d8b
Packit a83d8b
1. Abstract
Packit a83d8b
IO::Socket::INET6 provides an object interface to creating and using sockets
Packit a83d8b
in both AF_INET|AF_INET6 domain. It is built upon the IO::Socket interface and
Packit a83d8b
inherits all the methods defined by IO::Socket.
Packit a83d8b
Packit a83d8b
WARNING: You should use this module mainly to program IPv6
Packit a83d8b
domain. Most pobably future releases will not support AF_INET | AF_UNSPEC
Packit a83d8b
options, as the module seems to fail on some given corner cases. If you require
Packit a83d8b
IPv4, you are encouraged to use IO::Socket::INET from the application
Packit a83d8b
level. Be warned.
Packit a83d8b
Packit a83d8b
2. Install
Packit a83d8b
  % perl Makefile.PL
Packit a83d8b
  % make
Packit a83d8b
  % make test
Packit a83d8b
  # make install
Packit a83d8b
Packit a83d8b
3. AUTHOR and COPYRIGHT
Packit a83d8b
This program is based on IO::Socket::INET by Graham Barr <gbarr@pobox.com>
Packit a83d8b
and currently maintained by the Perl Porters.
Packit a83d8b
Packit a83d8b
Modified by Rafael Martinez Torres <rmartine@fdi.ucm.es> and
Packit a83d8b
Euro6IX project.
Packit a83d8b
Packit a83d8b
Further modified by Shlomi Fish <shlomif@iglu.org.il>.
Packit a83d8b
Packit a83d8b
Copyright (c) 2003- Rafael Martinez Torres <rmartine@fdi.ucm.es>.
Packit a83d8b
Copyright (c) 2003- Euro6IX project.
Packit a83d8b
Copyright (c) 1996-8 Graham Barr <gbarr@pobox.com>.
Packit a83d8b
Packit a83d8b
All rights reserved.
Packit a83d8b
Packit a83d8b
This program is free software; you can redistribute it and/or
Packit a83d8b
modify it under the same terms as Perl itself.