summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/site/lib/URI/https.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/site/lib/URI/https.pm')
-rw-r--r--Master/tlpkg/tlperl/site/lib/URI/https.pm15
1 files changed, 15 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl/site/lib/URI/https.pm b/Master/tlpkg/tlperl/site/lib/URI/https.pm
new file mode 100644
index 00000000000..9dbb02bb2ce
--- /dev/null
+++ b/Master/tlpkg/tlperl/site/lib/URI/https.pm
@@ -0,0 +1,15 @@
+package URI::https;
+
+use strict;
+use warnings;
+
+our $VERSION = '1.71';
+$VERSION = eval $VERSION;
+
+use parent 'URI::http';
+
+sub default_port { 443 }
+
+sub secure { 1 }
+
+1;