summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/URI/https.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/lib/URI/https.pm')
-rw-r--r--Master/tlpkg/tlperl/lib/URI/https.pm9
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl/lib/URI/https.pm b/Master/tlpkg/tlperl/lib/URI/https.pm
new file mode 100644
index 00000000000..94f9bb19eb4
--- /dev/null
+++ b/Master/tlpkg/tlperl/lib/URI/https.pm
@@ -0,0 +1,9 @@
+package URI::https;
+require URI::http;
+@ISA=qw(URI::http);
+
+sub default_port { 443 }
+
+sub secure { 1 }
+
+1;