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