ready for release now the resolver stuff is all good

This commit is contained in:
Zane C. B-H 2019-03-03 03:49:14 -06:00
parent c802e4cbd0
commit 51fd674359
3 changed files with 10 additions and 3 deletions

View File

@ -1,6 +1,6 @@
Revision history for Parse-Netstat-Colorizer
0.1.0 2019-03-03/03:00
0.1.0 2019-03-03/03:50
-Add inversion support to cnetstat.
-Add PTR and regexp PTR support to cnetstat.
-Add PTR resolving options.

View File

@ -22,6 +22,7 @@ sub help{
-h Print help info.
-i Invert the sort.
-l Equivalent of "-a -s listen". Can be combined with -s.
-n Don\'t resolve IPs to PTRs.
--nc Don\'t colorize the output.
-p <ports> A comma seperated list of ports to search for.
--pi Invert the port search.
@ -380,6 +381,13 @@ Sets the default sort method. -S overrides this.
If this is set, The output will not be colorized. If this is set, the --nc
flag is also inverted.
=head2 RES_NAMESERVERS
A space-separated list of nameservers to query used by L<Net::DNS::Resolver>.
There are a few more possible ones, but this is the most useful one and that documentation
really belongs to that module.
=head1 EXAMPLES
cnestat -s established,time_wait

View File

@ -51,8 +51,7 @@ Sorting and searching is handled via L<Parse::Netsat::Search> and
L<Parse::Netstat::Search::Sort>. Their objects for tweaking can be
fetched via get_sort and get_search.
L<Net::DNS::Resolver> is used for resolving hostnames. For setting
the
L<Net::DNS::Resolver> is used for resolving hostnames.
=head1 METHODS