note the changes

This commit is contained in:
Zane C. B-H 2019-07-31 01:51:49 -05:00
parent b1c35defe0
commit f2a92f8937
3 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,7 @@
Revision history for Net-Connection-Match
0.1.0 2019-07-31/02:00
- Ports can now match '*'.
0.0.0 2019-07-17/05:15
- Initial release.

View File

@ -11,11 +11,11 @@ Net::Connection::Match - Runs a stack of checks to match Net::Connection objects
=head1 VERSION
Version 0.0.0
Version 0.1.0
=cut
our $VERSION = '0.0.0';
our $VERSION = '0.1.0';
=head1 SYNOPSIS

View File

@ -43,6 +43,7 @@ our $VERSION = '0.1.0';
],
fports=>[
'http',
'*',
],
);
@ -63,7 +64,7 @@ possible keys defined. The possible keys are 'ports'(which
matches either side), 'lports'(which matches the local side),
and 'fports'(which matches the foreign side).
The value of each key is a array with either port numbers or
The value of each key is a array with either port numbers, '*', or
names. If names are given, getservbyname will be called. If
it errors for any of them, it will die.