summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/site/lib/URI/nntps.pm
blob: a10e99293a9be8772c26ef62644ff80c08b86eab (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.10';

use parent 'URI::nntp';

sub default_port { 563 }

sub secure { 1 }

1;