Net::PH is a CCSO nameserver client class.
SYNOPSIS
use Net::PH;
$ph = Net::PH->new("some.host.name",
Port => 105,
Timeout => 120,
Debug => 0);
if($ph) {
$q = $ph->query({ field1 => "value1" },
[qw(name address pobox)]);
if($q) {
}
}
# Alternative syntax
if($ph) {
$q = $ph->query('field1=value1',
'name address pobox');
if($q) {
}
}
Net::PH is a class implementing a simple Nameserver/PH client in Perl as described in the CCSO Nameserver -- Server-Client Protocol. Like other modules in the Net:: family the Net::PH object inherits methods from Net::Cmd.
Product's homepage
Requirements:
· Perl