about summary refs log tree commit
diff options
context:
space:
mode:
-rw-r--r--README14
-rw-r--r--lib/Net/NNTP.pm6
-rw-r--r--t/nntp_ipv6.t1
-rw-r--r--t/pop3_ipv6.t1
-rw-r--r--t/smtp_ipv6.t1
5 files changed, 13 insertions, 10 deletions
diff --git a/README b/README
index 73ded37..be7e967 100644
--- a/README
+++ b/README
@@ -2,13 +2,13 @@ libnet is a collection of Perl modules which provides a simple
 and consistent programming interface (API) to the client side
 of various protocols used in the internet community.
 
-For details of each protocol please refer to the RFC. RFC's
-can be found a various places on the WEB, for a starting
+For details of each protocol please refer to the RFC. RFCs
+can be found in various places on the web, for a starting
 point look at:
 
-    http://www.yahoo.com/Computers_and_Internet/Standards/RFCs/
+    http://www.rfc-editor.org/
 
-The RFC implemented in this distribution are
+The RFCs implemented in this distribution are
 
 Net::FTP        RFC959          File Transfer Protocol
 Net::SMTP       RFC821          Simple Mail Transfer Protocol
@@ -26,11 +26,11 @@ Archive Network (CPAN). To find a CPAN site near you see:
 
 The GitHub source repository can be browsed at
 
-    http://github.com/steve-m-hay/perl-libnet
+    https://github.com/steve-m-hay/perl-libnet
 
 If you have a Git client, then you can checkout the latest code with
 
-    git clone http://github.com/steve-m-hay/perl-libnet.git
+    git clone https://github.com/steve-m-hay/perl-libnet.git
 
 DOCUMENTATION
 
@@ -55,7 +55,7 @@ Questions about how to use this library should be directed to the
 comp.lang.perl.modules USENET Newsgroup.  Bug reports and suggestions
 for improvements can be reported on the CPAN Request Tracker at
 
-    http://rt.cpan.org/Public/Bug//Report.html?Queue=libnet
+    https://rt.cpan.org/Public/Bug/Report.html?Queue=libnet
 
 Most of the modules in this library have an option to output a debug
 transcript to STDERR. When reporting bugs/problems please, if possible,
diff --git a/lib/Net/NNTP.pm b/lib/Net/NNTP.pm
index 1cd0988..ddbd8e1 100644
--- a/lib/Net/NNTP.pm
+++ b/lib/Net/NNTP.pm
@@ -845,10 +845,10 @@ NNTP server, a value of zero will cause all IO operations to block.
 B<Debug> - Enable the printing of debugging information to STDERR
 
 B<Reader> - If the remote server is INN then initially the connection
-will be to nnrpd, by default C<Net::NNTP> will issue a C<MODE READER> command
-so that the remote server becomes innd. If the C<Reader> option is given
+will be to innd, by default C<Net::NNTP> will issue a C<MODE READER> command
+so that the remote server becomes nnrpd. If the C<Reader> option is given
 with a value of zero, then this command will not be sent and the
-connection will be left talking to nnrpd.
+connection will be left talking to innd.
 
 B<LocalAddr> and B<LocalPort> - These parameters are passed directly
 to IO::Socket to allow binding the socket to a specific local address and port.
diff --git a/t/nntp_ipv6.t b/t/nntp_ipv6.t
index 1992618..768489a 100644
--- a/t/nntp_ipv6.t
+++ b/t/nntp_ipv6.t
@@ -63,4 +63,5 @@ sub nntp_server {
     }
   }
   note("NNTP dialog done");
+  return 0;
 }
diff --git a/t/pop3_ipv6.t b/t/pop3_ipv6.t
index 1c88c1a..db31128 100644
--- a/t/pop3_ipv6.t
+++ b/t/pop3_ipv6.t
@@ -63,4 +63,5 @@ sub pop3_server {
   }
 
   note("POP3 dialog done");
+  return 0;
 }
diff --git a/t/smtp_ipv6.t b/t/smtp_ipv6.t
index a31b6ff..f430721 100644
--- a/t/smtp_ipv6.t
+++ b/t/smtp_ipv6.t
@@ -65,4 +65,5 @@ sub smtp_server {
   }
 
   note("SMTP dialog done");
+  return 0;
 }