Sha256: d4ca270ca32c48c75033a0e55cab4f9f68bac1a9c414d12f24cc77e520649262

Contents?: true

Size: 531 Bytes

Versions: 21

Compression:

Stored size: 531 Bytes

Contents

# frozen_string_literal: false
# = uri/ldap.rb
#
# License:: You can redistribute it and/or modify it under the same term as Ruby.
#
# See Gem::URI for general documentation
#

require_relative 'ldap'

module Gem::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 Gem::URI::LDAP.
  class LDAPS < LDAP
    # A Default port of 636 for Gem::URI::LDAPS
    DEFAULT_PORT = 636
  end

  register_scheme 'LDAPS', LDAPS
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
rubygems-update-3.5.6 lib/rubygems/vendor/uri/lib/uri/ldaps.rb