line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package AnyEvent::Finger::Transaction; |
2
|
|
|
|
|
|
|
|
3
|
5
|
|
|
5
|
|
32
|
use strict; |
|
5
|
|
|
|
|
9
|
|
|
5
|
|
|
|
|
130
|
|
4
|
5
|
|
|
5
|
|
26
|
use warnings; |
|
5
|
|
|
|
|
31
|
|
|
5
|
|
|
|
|
630
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
# ABSTRACT: Simple asynchronous finger transaction |
7
|
|
|
|
|
|
|
our $VERSION = '0.14'; # VERSION |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
|
10
|
34
|
|
|
34
|
1
|
253
|
sub res { shift->{res} } |
11
|
25
|
|
|
25
|
1
|
86
|
sub req { shift->{req} } |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
|
14
|
2
|
|
|
2
|
1
|
10
|
sub remote_port { shift->{remote_port} } |
15
|
2
|
|
|
2
|
1
|
5
|
sub local_port { shift->{local_port} } |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
2
|
|
|
2
|
1
|
6
|
sub remote_address { shift->{remote_address} } |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
1; |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
__END__ |