summaryrefslogtreecommitdiff
path: root/lib/uri
diff options
context:
space:
mode:
authorakira <akira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-25 00:53:34 +0000
committerakira <akira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-25 00:53:34 +0000
commit1c662c2b63a224539dfd9aaa57203d61d9b341f3 (patch)
tree5bf67403065f095003f7c901fd2a8b0d72c1e262 /lib/uri
parent6b63368278e32d3dc64468de30a7de8ab265599d (diff)
* lib/uri.rb, lib/uri/ldaps.rb: added LDAPS
cheme. [ruby-dev:31896] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13772 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/uri')
-rw-r--r--lib/uri/ldaps.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/uri/ldaps.rb b/lib/uri/ldaps.rb
new file mode 100644
index 0000000000..6da333150f
--- /dev/null
+++ b/lib/uri/ldaps.rb
@@ -0,0 +1,12 @@
+require 'uri/ldap'
+
+module URI
+
+ # The default port for LDAPS URIs is 636, and the scheme is 'ldaps:' rather
+ # than 'ldap:'. Other than that, LDAPS URIs are identical to LDAP URIs;
+ # see URI::LDAP.
+ class LDAPS < LDAP
+ DEFAULT_PORT = 636
+ end
+ @@schemes['LDAPS'] = LDAPS
+end