All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Not committed (merge conflicts...):
net/radsecproxy/distinfo
The following distfiles could not be fetched (fetched conditionally?):
./net/citrix_ica/distinfo citrix_ica-10.6.115659/en.linuxx86.tar.gz
./net/djbdns/distinfo dnscache-1.05-multiple-ip.patch
./net/djbdns/distinfo djbdns-1.05-test28.diff.xz
./net/djbdns/distinfo djbdns-1.05-ignoreip2.patch
./net/djbdns/distinfo djbdns-1.05-multiip.diff
./net/djbdns/distinfo djbdns-cachestats.patch
Upstream changes:
* Version 3.05 released.
2021-06-20 Jay Rogers <jay@rgrs.com>
* Telnet.pm: Fixed new perl warning about argument isn't numeric in
numeric ge (>=).
2021-05-30 Jay Rogers <jay@rgrs.com>
* Telnet.pm (dump_log input_log option_log output_log): Changed
the logging subroutines to also accept a tied filehandle.
2021-03-30 Jay Rogers <jay@rgrs.com>
* Telnet.pm (waitfor): Improved the speed to search for the
"match", especially when reading a large amount of data, by using
the dynamic arrays @- and @+ instead of $` and $&.
2021-03-30 Jay Rogers <jay@rgrs.com>
* Telnet.pm (new): Fixed a bug that caused the instantiation to
fail when setting one of the *_log input args to an empty string.
2020-02-20 Jay Rogers <jay@rgrs.com>
* Telnet.pm: Added a workaround for the "require FileHandle" bug in
perl 5.10.1.
2020-02-20 Jay Rogers <jay@rgrs.com>
* Telnet.pm: Stopped using the deprecated variable $[ in the
autoflush idiom select((select($fh), $|=1)[$[]).
2018-07-12 Jay Rogers <jay@rgrs.com>
* Telnet.pm: Fixed some documentation and pod command typos.
2013-04-21 Jay Rogers <jay@rgrs.com>
-----------
2013-04-21 Jay Rogers <jay@rgrs.com>
* Version 3.04 released.
2012-12-15 Jay Rogers <jay@rgrs.com>
* Telnet.pm (open family sockfamily): Added IPv6
support. It is enabled using the method/parameter
family() and the installed Socket package version is
1.94+ (which corresponds with perl 5.14+).
* Telnet.pm (peerhost peerport sockhost sockport):
New methods to support IPv6, because the inherited
ones from IO::Socket::INET don't.
* Telnet.pm (open localhost localfamily): New
methods and open() parameters for binding to a local
network interface.
* Telnet.pm (dump_log, input_log, option_log, output_log): Fixed
so they turn off logging when passed an empty string arg.
* Telnet.pm (_fillbuf _put): Fixed to use
Errno::EINTR, when possible, to test for an
interrupted select(), sysread(), or syswrite(). The
test for $! =~ /^interrupted doesn't work when LANG
is not English.
2002-12-17 Jay Rogers <jay@rgrs.com>
* Telnet.pm (dump_log, input_log, option_log, output_log): Fixed
so they take a bare filehandle.
Changes:
* Telnet.pm (getlines): Changed behavior so it works like
IO::Handle::getlines(). Instead of returning just the lines
currently available for reading, it now returns all lines until
end-of-file. To get the old behavior, use "All => ''" named
parameter.
* Telnet.pm (put): New method put() is like print(), except that
it doesn't write the trailing output_record_separator ("\n"). It
also takes named parameters.
* Telnet.pm (last_prompt): New method last_prompt() provides the
last prompt matched by cmd() or login().
* Telnet.pm (rs): New method rs() is synonymous with
input_record_separator().
* Telnet.pm (ors): New method ors() is synonymous with
output_record_separator.
* Telnet.pm (ofs): New method ofs() is synonymous with
output_field_separator().
* Telnet.pm (input_log, output_log, option_log): Fixed so they
always return the filehandle of the logfile or "" if logging
turned-off.
* Telnet.pm (dump_log, input_log, option_log, output_log): Fixed
so they work with an unblessed or tied filehandle.
* Telnet.pm (cmd_remove_mode, errmode, input_record_separator)
(max_buffer_length, option_callback, port, prompt, timeout): These
attribute methods now ignore an invalid argument and print a
warning to stderr. This also applies to a named parameter used to
override one of these attributes.
* Telnet.pm (cmd): Added named parameters to override Errmode, and
Input_record_separator.
* Telnet.pm (get, waitfor): Added named parameters to override
Binmode, Errmode, and Telnetmode.
* Telnet.pm (getline, getlines): Added named parameters to
override Binmode, Errmode, Input_record_separator, and Telnetmode.
* Telnet.pm (login, open): Added named parameter to override
Errmode.
* Telnet.pm (login): Added two 0.01 second delays to workaround
bug in Linux login program.
* Telnet.pm (break): Fixed to properly send TELNET break command.
* Telnet.pm (open): Fixed to properly handle an absolute timeout
value.
* Telnet.pm: Squelched the warning "isn't numeric" caused by
deficiency in ActiveState perl and MS-Windows.
* t/select.t: Fixed test #3 so it passes when running on Linux 2.4
or greater.