| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
# |
|
2
|
|
|
|
|
|
|
# $Id: PatternTcpWindow.pm 2236 2015-02-15 17:03:25Z gomor $ |
|
3
|
|
|
|
|
|
|
# |
|
4
|
|
|
|
|
|
|
package Net::SinFP::DB::PatternTcpWindow; |
|
5
|
1
|
|
|
1
|
|
375
|
use strict; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
27
|
|
|
6
|
1
|
|
|
1
|
|
3
|
use warnings; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
97
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
require DBIx::SQLite::Simple::Table; |
|
9
|
|
|
|
|
|
|
our @ISA = qw(DBIx::SQLite::Simple::Table); |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
our @AS = qw( |
|
12
|
|
|
|
|
|
|
idPatternTcpWindow |
|
13
|
|
|
|
|
|
|
patternTcpWindowHeuristic0 |
|
14
|
|
|
|
|
|
|
patternTcpWindowHeuristic1 |
|
15
|
|
|
|
|
|
|
patternTcpWindowHeuristic2 |
|
16
|
|
|
|
|
|
|
); |
|
17
|
|
|
|
|
|
|
__PACKAGE__->cgBuildIndices; |
|
18
|
|
|
|
|
|
|
__PACKAGE__->cgBuildAccessorsScalar(\@AS); |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
our $Id = $AS[0]; |
|
21
|
|
|
|
|
|
|
our @Fields = @AS[1..$#AS]; |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
1; |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 NAME |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Net::SinFP::DB::PatternTcpWindow - PatternTcpWindow database table |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Go to http://www.gomor.org/sinfp to know more. |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=cut |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 AUTHOR |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Patrice EGomoRE Auffret |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
Copyright (c) 2005-2015, Patrice EGomoRE Auffret |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
You may distribute this module under the terms of the Artistic license. |
|
44
|
|
|
|
|
|
|
See LICENSE.Artistic file in the source distribution archive. |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=cut |