2015-12-16 00:07:31 -05:00
|
|
|
# frozen_string_literal: false
|
2011-05-13 16: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 13:52:33 -04:00
|
|
|
require_relative 'ldap'
|
2007-10-24 20: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-12 16:39:11 -04:00
|
|
|
# A Default port of 636 for URI::LDAPS
|
2007-10-24 20:53:34 -04:00
|
|
|
DEFAULT_PORT = 636
|
|
|
|
end
|
2021-06-25 07:24:56 -04:00
|
|
|
@@schemes['LDAPS'] = LDAPS
|
2007-10-24 20:53:34 -04:00
|
|
|
end
|