summaryrefslogtreecommitdiff
path: root/systems/texlive/tlnet/tlpkg/tlperl/site/lib/URI/nntps.pm
blob: d37fed6b3ccabf1e672af1e9f76c25e85426b9bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package URI::nntps;

use strict;
use warnings;

our $VERSION = '5.27';

use parent 'URI::nntp';

sub default_port { 563 }

sub secure { 1 }

1;