1Net::INET6Glue::FTP(3)User Contributed Perl DocumentationNet::INET6Glue::FTP(3)
2
3
4
6 Net::INET6Glue::FTP - adds IPv6 support to Net::FTP by hotpatching
7
9 use Net::INET6Glue::FTP;
10 use Net::FTP;
11 my $ftp = Net::FTP->new( '::1' );
12 $ftp->login(...)
13
15 This module adds support for IPv6 by hotpatching support for EPRT and
16 EPSV commands into Net::FTP and hotpatching pasv, port and _dataconn
17 methods to make use of EPRT and EPSV on IPv6 connections.
18
19 It also includes Net::INET6Glue::INET_is_INET6 to make the Net::FTP
20 sockets IPv6 capable.
21
23 This module is copyright (c) 2008..2014, Steffen Ullrich. All Rights
24 Reserved. This module is free software. It may be used, redistributed
25 and/or modified under the same terms as Perl itself.
26
27
28
29perl v5.28.1 2014-09-07 Net::INET6Glue::FTP(3)