line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::Connection::Sort::unsorted; |
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
224903
|
use 5.006; |
|
2
|
|
|
|
|
19
|
|
4
|
2
|
|
|
2
|
|
11
|
use strict; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
50
|
|
5
|
2
|
|
|
2
|
|
10
|
use warnings; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
425
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 NAME |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
Net::Connection::Sort::unsorted - Pass though. Does returns exactly what it was given. |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 VERSION |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Version 0.0.1 |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=cut |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
our $VERSION = '0.0.1'; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 SYNOPSIS |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
use Net::Connection::Sort::unsorted; |
23
|
|
|
|
|
|
|
use Net::Connection; |
24
|
|
|
|
|
|
|
use Data::Dumper; |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
my @objects=( |
27
|
|
|
|
|
|
|
Net::Connection->new({ |
28
|
|
|
|
|
|
|
'foreign_host' => '3.3.3.3', |
29
|
|
|
|
|
|
|
'local_host' => '4.4.4.4', |
30
|
|
|
|
|
|
|
'foreign_port' => '22', |
31
|
|
|
|
|
|
|
'local_port' => '11132', |
32
|
|
|
|
|
|
|
'sendq' => '1', |
33
|
|
|
|
|
|
|
'recvq' => '0', |
34
|
|
|
|
|
|
|
'state' => 'LISTEN', |
35
|
|
|
|
|
|
|
'proto' => 'tcp4' |
36
|
|
|
|
|
|
|
}), |
37
|
|
|
|
|
|
|
Net::Connection->new({ |
38
|
|
|
|
|
|
|
'foreign_host' => '1.1.1.1', |
39
|
|
|
|
|
|
|
'local_host' => '2.2.2.2', |
40
|
|
|
|
|
|
|
'foreign_port' => '22', |
41
|
|
|
|
|
|
|
'local_port' => '11132', |
42
|
|
|
|
|
|
|
'sendq' => '1', |
43
|
|
|
|
|
|
|
'recvq' => '0', |
44
|
|
|
|
|
|
|
'state' => 'FIN_WAIT_2', |
45
|
|
|
|
|
|
|
'proto' => 'tcp4' |
46
|
|
|
|
|
|
|
}), |
47
|
|
|
|
|
|
|
Net::Connection->new({ |
48
|
|
|
|
|
|
|
'foreign_host' => '5.5.5.5', |
49
|
|
|
|
|
|
|
'local_host' => '6.6.6.6', |
50
|
|
|
|
|
|
|
'foreign_port' => '22', |
51
|
|
|
|
|
|
|
'local_port' => '11132', |
52
|
|
|
|
|
|
|
'sendq' => '1', |
53
|
|
|
|
|
|
|
'recvq' => '0', |
54
|
|
|
|
|
|
|
'state' => 'TIME_WAIT', |
55
|
|
|
|
|
|
|
'proto' => 'tcp4' |
56
|
|
|
|
|
|
|
}), |
57
|
|
|
|
|
|
|
Net::Connection->new({ |
58
|
|
|
|
|
|
|
'foreign_host' => '3.3.3.3', |
59
|
|
|
|
|
|
|
'local_host' => '4.4.4.4', |
60
|
|
|
|
|
|
|
'foreign_port' => '22', |
61
|
|
|
|
|
|
|
'local_port' => '11132', |
62
|
|
|
|
|
|
|
'sendq' => '1', |
63
|
|
|
|
|
|
|
'recvq' => '0', |
64
|
|
|
|
|
|
|
'state' => 'ESTABLISHED', |
65
|
|
|
|
|
|
|
'proto' => 'tcp4' |
66
|
|
|
|
|
|
|
}), |
67
|
|
|
|
|
|
|
); |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
my $sorter=$sorter=Net::Connection::Sort::unsorted->new; |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
@objects=$sorter->sorter( \@objects ); |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
print Dumper( \@objects ); |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=head1 METHODS |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=head2 new |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
This initiates the module. |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
No arguments are taken and this will always succeed. |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
my $sorter=$sorter=Net::Connection::Sort::state->new; |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
=cut |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
sub new{ |
88
|
1
|
|
|
1
|
1
|
1986
|
my %args; |
89
|
1
|
50
|
|
|
|
5
|
if(defined($_[1])){ |
90
|
0
|
|
|
|
|
0
|
%args= %{$_[1]}; |
|
0
|
|
|
|
|
0
|
|
91
|
|
|
|
|
|
|
}; |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
|
94
|
1
|
|
|
|
|
2
|
my $self = { |
95
|
|
|
|
|
|
|
}; |
96
|
1
|
|
|
|
|
2
|
bless $self; |
97
|
|
|
|
|
|
|
|
98
|
1
|
|
|
|
|
3
|
return $self; |
99
|
|
|
|
|
|
|
} |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
=head2 sort |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
This sorts the array of Net::Connection objects. |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
One object is taken and that is a array of objects. |
106
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
@objects=$sorter->sorter( \@objects ); |
108
|
|
|
|
|
|
|
|
109
|
|
|
|
|
|
|
print Dumper( \@objects ); |
110
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
=cut |
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
sub sorter{ |
114
|
1
|
|
|
1
|
0
|
367
|
my $self=$_[0]; |
115
|
1
|
|
|
|
|
3
|
my @objects; |
116
|
1
|
50
|
33
|
|
|
8
|
if ( |
117
|
|
|
|
|
|
|
defined( $_[1] ) && |
118
|
|
|
|
|
|
|
( ref($_[1]) eq 'ARRAY' ) |
119
|
|
|
|
|
|
|
){ |
120
|
1
|
|
|
|
|
2
|
@objects=@{ $_[1] }; |
|
1
|
|
|
|
|
4
|
|
121
|
|
|
|
|
|
|
}else{ |
122
|
0
|
|
|
|
|
0
|
die 'The passed item is either not a array or undefined'; |
123
|
|
|
|
|
|
|
} |
124
|
|
|
|
|
|
|
|
125
|
1
|
|
|
|
|
3
|
return @objects; |
126
|
|
|
|
|
|
|
} |
127
|
|
|
|
|
|
|
|
128
|
|
|
|
|
|
|
=head1 AUTHOR |
129
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
Zane C. Bowers-Hadley, C<< >> |
131
|
|
|
|
|
|
|
|
132
|
|
|
|
|
|
|
=head1 BUGS |
133
|
|
|
|
|
|
|
|
134
|
|
|
|
|
|
|
Please report any bugs or feature requests to C, or through |
135
|
|
|
|
|
|
|
the web interface at L. I will be notified, and then you'll |
136
|
|
|
|
|
|
|
automatically be notified of progress on your bug as I make changes. |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
|
139
|
|
|
|
|
|
|
|
140
|
|
|
|
|
|
|
|
141
|
|
|
|
|
|
|
=head1 SUPPORT |
142
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
You can find documentation for this module with the perldoc command. |
144
|
|
|
|
|
|
|
|
145
|
|
|
|
|
|
|
perldoc Net::Connection::Sort |
146
|
|
|
|
|
|
|
|
147
|
|
|
|
|
|
|
|
148
|
|
|
|
|
|
|
You can also look for information at: |
149
|
|
|
|
|
|
|
|
150
|
|
|
|
|
|
|
=over 4 |
151
|
|
|
|
|
|
|
|
152
|
|
|
|
|
|
|
=item * RT: CPAN's request tracker (report bugs here) |
153
|
|
|
|
|
|
|
|
154
|
|
|
|
|
|
|
L |
155
|
|
|
|
|
|
|
|
156
|
|
|
|
|
|
|
=item * Search CPAN |
157
|
|
|
|
|
|
|
|
158
|
|
|
|
|
|
|
L |
159
|
|
|
|
|
|
|
|
160
|
|
|
|
|
|
|
=item * Git Repo |
161
|
|
|
|
|
|
|
|
162
|
|
|
|
|
|
|
L |
163
|
|
|
|
|
|
|
|
164
|
|
|
|
|
|
|
=back |
165
|
|
|
|
|
|
|
|
166
|
|
|
|
|
|
|
|
167
|
|
|
|
|
|
|
=head1 ACKNOWLEDGEMENTS |
168
|
|
|
|
|
|
|
|
169
|
|
|
|
|
|
|
|
170
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
171
|
|
|
|
|
|
|
|
172
|
|
|
|
|
|
|
This software is Copyright (c) 2019 by Zane C. Bowers-Hadley. |
173
|
|
|
|
|
|
|
|
174
|
|
|
|
|
|
|
This is free software, licensed under: |
175
|
|
|
|
|
|
|
|
176
|
|
|
|
|
|
|
The Artistic License 2.0 (GPL Compatible) |
177
|
|
|
|
|
|
|
|
178
|
|
|
|
|
|
|
|
179
|
|
|
|
|
|
|
=cut |
180
|
|
|
|
|
|
|
|
181
|
|
|
|
|
|
|
1; # End of Net::Connection::Sort |