| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
# Copyright (c) 2016 CentralNic Ltd. All rights reserved. This program is |
|
2
|
|
|
|
|
|
|
# free software; you can redistribute it and/or modify it under the same |
|
3
|
|
|
|
|
|
|
# terms as Perl itself. |
|
4
|
|
|
|
|
|
|
# |
|
5
|
|
|
|
|
|
|
# $Id$ |
|
6
|
|
|
|
|
|
|
package Net::EPP; |
|
7
|
1
|
|
|
1
|
|
3832
|
use vars qw($VERSION); |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
38
|
|
|
8
|
1
|
|
|
1
|
|
354
|
use Net::EPP::Client; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
23
|
|
|
9
|
1
|
|
|
1
|
|
702
|
use Net::EPP::Frame; |
|
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
use Net::EPP::Protocol; |
|
11
|
|
|
|
|
|
|
use Net::EPP::ResponseCodes; |
|
12
|
|
|
|
|
|
|
use Net::EPP::Simple; |
|
13
|
|
|
|
|
|
|
use strict; |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
our $VERSION = '0.22'; |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
1; |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
__END__ |