| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Net::EPP::Frame::Hello; |
|
2
|
1
|
|
|
1
|
|
7
|
use base qw(Net::EPP::Frame); |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
123
|
|
|
3
|
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
=pod |
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
=head1 NAME |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
Net::EPP::Frame::Hello - an instance of L for client greetings |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
This module is a subclass of L that represents EPP client |
|
13
|
|
|
|
|
|
|
greetings. |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Clients can send a greeting to an EPP server at any time during a session. |
|
16
|
|
|
|
|
|
|
According to the EPP RFC, the server must transmit an EPP greeting frame to the |
|
17
|
|
|
|
|
|
|
client upon connection, and in response to an EPP ChelloE> command. |
|
18
|
|
|
|
|
|
|
The CgreetingE> frame provides information about the server, |
|
19
|
|
|
|
|
|
|
including the server time, access control rules, and a list of the object |
|
20
|
|
|
|
|
|
|
types that are provisioned by the server. |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 OBJECT HIERARCHY |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
L |
|
25
|
|
|
|
|
|
|
+----L |
|
26
|
|
|
|
|
|
|
+----L |
|
27
|
|
|
|
|
|
|
+----L |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 METHODS |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
This module does not define any methods in addition to those it inherits from |
|
32
|
|
|
|
|
|
|
its ancestors. |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=cut |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
1; |