An instance of net::epp::frame for server greetings
This module is a subclass of Net::EPP::Frame that represents \s-1EPP\s0 server greetings.
According to the \s-1EPP\s0 \s-1RFC\s0, the server must transmit an \s-1EPP\s0 greeting frame to the client upon connection, and in response to an \s-1EPP\s0 \*(C`<hello>\*(C' command. The \*(C`<greeting>\*(C' frame provides information about the server, including the server time, access control rules, and a list of the object types that are provisioned by the server.
L<XML::LibXML::Node> +----L<XML::LibXML::Document> +----L<Net::EPP::Frame> +----L<Net::EPP::Frame::Greeting>
my $node = $frame->greeting;
This method returns the XML::LibXML::Element object corresponding to the \*(C`<greeting>\*(C' element.
my $node = $frame->svID;
This method returns the XML::LibXML::Element object corresponding to the \*(C`<svID>\*(C' element.
my $node = $frame->svDate;
This method returns the XML::LibXML::Element object corresponding to the \*(C`<svDate>\*(C' element.
my $node = $frame->svcMenu;
This method returns the XML::LibXML::Element object corresponding to the \*(C`<svcMenu>\*(C' element.
my $node = $frame->dcp;
This method returns the XML::LibXML::Element object corresponding to the \*(C`<dcp>\*(C' element.
CentralNic Ltd (http://www.centralnic.com/).
This module is (c) 2012 CentralNic Ltd. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Net::EPP::Frame