summaryrefslogtreecommitdiff
path: root/lib/URI/ldaps.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/URI/ldaps.pm')
-rw-r--r--lib/URI/ldaps.pm14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/URI/ldaps.pm b/lib/URI/ldaps.pm
new file mode 100644
index 0000000..80a96d3
--- /dev/null
+++ b/lib/URI/ldaps.pm
@@ -0,0 +1,14 @@
+package URI::ldaps;
+
+use strict;
+use warnings;
+
+our $VERSION = "1.69";
+
+use parent 'URI::ldap';
+
+sub default_port { 636 }
+
+sub secure { 1 }
+
+1;