Net::NNTP

Net::NNTP

NAME

Net::NNTP - NNTP Client class

SYNOPSIS

use Net::NNTP;

$nntp = Net::NNTP->new("some.host.name");
$nntp->quit;

# start with SSL, e.g. nntps
$nntp = Net::NNTP->new("some.host.name", SSL => 1);

# start with plain and upgrade to SSL
$nntp = Net::NNTP->new("some.host.name");
$nntp->starttls;

DESCRIPTION

登录查看完整内容