From e04e2e0bb33e48f556037d786db60ac2059b2af9 Mon Sep 17 00:00:00 2001 From: kazu Date: Tue, 15 Apr 2008 09:41:47 +0000 Subject: * lib/uri.rb, lib/uri/ldaps.rb: added LDAPS scheme; backported from 1.9. bug#19015, [ruby-dev:31896] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@16038 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/uri.rb | 1 + lib/uri/ldaps.rb | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 lib/uri/ldaps.rb (limited to 'lib') diff --git a/lib/uri.rb b/lib/uri.rb index 09c4f5fbcf..f7110f18fd 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 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 -- cgit v1.2.3