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: Hello.pm,v 1.4 2011/12/03 11:44:51 gavin Exp $ |
6
|
|
|
|
|
|
|
package Net::EPP::Frame::Hello; |
7
|
1
|
|
|
1
|
|
4
|
use base qw(Net::EPP::Frame); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
60
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=pod |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Net::EPP::Frame::Hello - an instance of L for client greetings |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 DESCRIPTION |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
This module is a subclass of L that represents EPP client |
18
|
|
|
|
|
|
|
greetings. |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Clients can send a greeting to an EPP server at any time during a session. |
21
|
|
|
|
|
|
|
According to the EPP RFC, the server must transmit an EPP greeting frame to the |
22
|
|
|
|
|
|
|
client upon connection, and in response to an EPP ChelloE> command. |
23
|
|
|
|
|
|
|
The CgreetingE> frame provides information about the server, |
24
|
|
|
|
|
|
|
including the server time, access control rules, and a list of the object |
25
|
|
|
|
|
|
|
types that are provisioned by the server. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 OBJECT HIERARCHY |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
L |
30
|
|
|
|
|
|
|
+----L |
31
|
|
|
|
|
|
|
+----L |
32
|
|
|
|
|
|
|
+----L |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 METHODS |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
This module does not define any methods in addition to those it inherits from |
37
|
|
|
|
|
|
|
its ancestors. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 AUTHOR |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
CentralNic Ltd (http://www.centralnic.com/). |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 COPYRIGHT |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
This module is (c) 2016 CentralNic Ltd. This module is free software; you can |
46
|
|
|
|
|
|
|
redistribute it and/or modify it under the same terms as Perl itself. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 SEE ALSO |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=over |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=item * L |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=back |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=cut |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
1; |