summaryrefslogtreecommitdiffstats
path: root/lib
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
commit2875de61e626daa72b09bce0a1685862b6622dea (patch)
tree5bf67403065f095003f7c901fd2a8b0d72c1e262 /lib
parent736d492a254df953c5e685b621105fbd4bf578d6 (diff)
downloadruby-2875de61e626daa72b09bce0a1685862b6622dea.tar.gz
ruby-2875de61e626daa72b09bce0a1685862b6622dea.tar.xz
ruby-2875de61e626daa72b09bce0a1685862b6622dea.zip
* lib/uri.rb, lib/uri/ldaps.rb: added LDAPS
cheme. [ruby-dev:31896] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13772 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/uri.rb1
-rw-r--r--lib/uri/ldaps.rb12
2 files changed, 13 insertions, 0 deletions
diff --git a/lib/uri.rb b/lib/uri.rb
index 09c4f5fbc..f7110f18f 100644
--- a/lib/uri.rb
+++ b/lib/uri.rb
@@ -25,4 +25,5 @@ require 'uri/ftp'
require 'uri/http'
require 'uri/https'
require 'uri/ldap'
+require 'uri/ldaps'
require 'uri/mailto'
diff --git a/lib/uri/ldaps.rb b/lib/uri/ldaps.rb
new file mode 100644
index 000000000..6da333150
--- /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