📄 consts.pm
字号:
## $Id: Consts.pm,v 1.1.2.4 2006/06/11 09:30:06 gomor Exp $#package Net::SinFP::Consts;use strict;use warnings;require Exporter;our @ISA = qw(Exporter);our %EXPORT_TAGS = ( matchType => [qw( NS_MATCH_TYPE_P1P2P3 NS_MATCH_TYPE_P1P2 NS_MATCH_TYPE_P2 )], matchMask => [qw( NS_MATCH_MASK_HEURISTIC0 NS_MATCH_MASK_HEURISTIC1 NS_MATCH_MASK_HEURISTIC2 )],);our @EXPORT_OK = ( @{$EXPORT_TAGS{matchType}}, @{$EXPORT_TAGS{matchMask}},);use constant NS_MATCH_TYPE_P1P2P3 => 'P1P2P3';use constant NS_MATCH_TYPE_P1P2 => 'P1P2';use constant NS_MATCH_TYPE_P2 => 'P2';use constant NS_MATCH_MASK_HEURISTIC0 => 'HEURISTIC0';use constant NS_MATCH_MASK_HEURISTIC1 => 'HEURISTIC1';use constant NS_MATCH_MASK_HEURISTIC2 => 'HEURISTIC2';1;=head1 NAMENet::SinFP:Consts - all constants are defined here=head1 DESCRIPTIONGo to http://www.gomor.org/sinfp to know more.=cut=head1 AUTHORPatrice E<lt>GomoRE<gt> Auffret=head1 COPYRIGHT AND LICENSECopyright (c) 2005-2006, Patrice E<lt>GomoRE<gt> AuffretYou may distribute this module under the terms of the Artistic license.See LICENSE.Artistic file in the source distribution archive.=cut
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -