Net-EPP-Server
view release on metacpan or search on metacpan
name: Net-EPP-Server
requires:
Carp: '0'
Crypt::OpenSSL::Random: '0'
Cwd: '0'
DateTime: '0'
Digest::SHA: '0'
File::Path: '0'
File::Slurp: '0'
File::Spec: '0'
IO::Socket::SSL: '0'
List::Util: '0'
Mozilla::CA: '0'
Net::EPP: '0.27'
Net::EPP::Frame: '0'
Net::EPP::Protocol: '0'
Net::EPP::ResponseCodes: '0'
Net::Server::PreFork: '0'
No::Worries::DN: '0'
Socket: '0'
Socket6: '0'
Makefile.PL view on Meta::CPAN
"NAME" => "Net::EPP::Server",
"PREREQ_PM" => {
"Carp" => 0,
"Crypt::OpenSSL::Random" => 0,
"Cwd" => 0,
"DateTime" => 0,
"Digest::SHA" => 0,
"File::Path" => 0,
"File::Slurp" => 0,
"File::Spec" => 0,
"IO::Socket::SSL" => 0,
"List::Util" => 0,
"Mozilla::CA" => 0,
"Net::EPP" => "0.27",
"Net::EPP::Frame" => 0,
"Net::EPP::Protocol" => 0,
"Net::EPP::ResponseCodes" => 0,
"Net::Server::PreFork" => 0,
"No::Worries::DN" => 0,
"Socket" => 0,
"Socket6" => 0,
Makefile.PL view on Meta::CPAN
my %FallbackPrereqs = (
"Carp" => 0,
"Crypt::OpenSSL::Random" => 0,
"Cwd" => 0,
"DateTime" => 0,
"Digest::SHA" => 0,
"File::Path" => 0,
"File::Slurp" => 0,
"File::Spec" => 0,
"IO::Socket::SSL" => 0,
"List::Util" => 0,
"Mozilla::CA" => 0,
"Net::EPP" => "0.27",
"Net::EPP::Frame" => 0,
"Net::EPP::Protocol" => 0,
"Net::EPP::ResponseCodes" => 0,
"Net::Server::PreFork" => 0,
"No::Worries::DN" => 0,
"Socket" => 0,
"Socket6" => 0,
lib/Net/EPP/Server.pm view on Meta::CPAN
package Net::EPP::Server;
# ABSTRACT: A simple EPP server implementation.
use Carp;
use Crypt::OpenSSL::Random;
use Cwd qw(abs_path);
use DateTime;
use Digest::SHA qw(sha512_hex);
use File::Path qw(make_path);
use File::Spec;
use File::Slurp qw(write_file);
use IO::Socket::SSL;
use List::Util qw(any none);
use Mozilla::CA;
use Net::EPP 0.27;
use Net::EPP::Frame;
use Net::EPP::Protocol;
use Net::EPP::ResponseCodes;
use No::Worries::DN qw(dn_parse);
use Socket;
use Socket6;
use Sys::Hostname;
( run in 0.502 second using v1.01-cache-2.11-cpan-4d50c553e7e )