note the changes

Dieser Commit ist enthalten in:
Zane C. B-H 2019-07-31 01:51:49 -05:00
Ursprung b1c35defe0
Commit f2a92f8937
3 geänderte Dateien mit 7 neuen und 3 gelöschten Zeilen

Datei anzeigen

@ -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.

Datei anzeigen

@ -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

Datei anzeigen

@ -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.