line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Lim::RPC::Transport::HTTPS; |
2
|
|
|
|
|
|
|
|
3
|
3
|
|
|
3
|
|
3614
|
use common::sense; |
|
3
|
|
|
|
|
6
|
|
|
3
|
|
|
|
|
30
|
|
4
|
|
|
|
|
|
|
|
5
|
3
|
|
|
3
|
|
155
|
use Lim::RPC::Transport::HTTP (); |
|
3
|
|
|
|
|
8
|
|
|
3
|
|
|
|
|
62
|
|
6
|
|
|
|
|
|
|
|
7
|
3
|
|
|
3
|
|
20
|
use base qw(Lim::RPC::Transport::HTTP); |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
496
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=encoding utf8 |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
... |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 VERSION |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
See L for version. |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=cut |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
our $VERSION = $Lim::RPC::Transport::HTTP::VERSION; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 SYNOPSIS |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
... |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 SUBROUTINES/METHODS |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 name |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=cut |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
sub name { |
34
|
2
|
|
|
2
|
1
|
11
|
'https'; |
35
|
|
|
|
|
|
|
} |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 AUTHOR |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Jerry Lundström, C<< >> |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 BUGS |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Please report any bugs or feature requests to L. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head1 SUPPORT |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
You can find documentation for this module with the perldoc command. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
perldoc Lim |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
You can also look for information at: |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=over 4 |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=item * Lim issue tracker (report bugs here) |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
L |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=back |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head1 ACKNOWLEDGEMENTS |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
Copyright 2012-2013 Jerry Lundström. |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
68
|
|
|
|
|
|
|
under the terms of either: the GNU General Public License as published |
69
|
|
|
|
|
|
|
by the Free Software Foundation; or the Artistic License. |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
See http://dev.perl.org/licenses/ for more information. |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=cut |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
1; # End of Lim::RPC::Transport::HTTPS |