2015-12-16 08:07:31 +03:00
|
|
|
# frozen_string_literal: false
|
2011-05-14 00:03:21 +04:00
|
|
|
# = uri/ldap.rb
|
|
|
|
#
|
|
|
|
# License:: You can redistribute it and/or modify it under the same term as Ruby.
|
|
|
|
#
|
|
|
|
# See URI for general documentation
|
|
|
|
#
|
|
|
|
|
2018-11-02 20:52:33 +03:00
|
|
|
require_relative 'ldap'
|
2007-10-25 04:53:34 +04:00
|
|
|
|
|
|
|
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
|
2011-05-13 00:39:11 +04:00
|
|
|
# A Default port of 636 for URI::LDAPS
|
2007-10-25 04:53:34 +04:00
|
|
|
DEFAULT_PORT = 636
|
|
|
|
end
|
2021-06-25 14:38:01 +03:00
|
|
|
|
|
|
|
register_scheme 'LDAPS', LDAPS
|
2007-10-25 04:53:34 +04:00
|
|
|
end
|