1# = uri/ldap.rb
2#
3# License:: You can redistribute it and/or modify it under the same term as Ruby.
4#
5# See URI for general documentation
6#
7
8require 'uri/ldap'
9
10module URI
11
12  # The default port for LDAPS URIs is 636, and the scheme is 'ldaps:' rather
13  # than 'ldap:'. Other than that, LDAPS URIs are identical to LDAP URIs;
14  # see URI::LDAP.
15  class LDAPS < LDAP
16    # A Default port of 636 for URI::LDAPS
17    DEFAULT_PORT = 636
18  end
19  @@schemes['LDAPS'] = LDAPS
20end
21