summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/URI/https.pm
blob: 94f9bb19eb4ccd57a33a02cadfdfb54a94a29487 (plain)
1
2
3
4
5
6
7
8
9
package URI::https;
require URI::http;
@ISA=qw(URI::http);

sub default_port { 443 }

sub secure { 1 }

1;