Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/AnonR/anonr.TX.../opt/alt/ruby27/share/ruby/uri
File: ldaps.rb
# frozen_string_literal: false
[0] Fix | Delete
# = uri/ldap.rb
[1] Fix | Delete
#
[2] Fix | Delete
# License:: You can redistribute it and/or modify it under the same term as Ruby.
[3] Fix | Delete
#
[4] Fix | Delete
# See URI for general documentation
[5] Fix | Delete
#
[6] Fix | Delete
[7] Fix | Delete
require_relative 'ldap'
[8] Fix | Delete
[9] Fix | Delete
module URI
[10] Fix | Delete
[11] Fix | Delete
# The default port for LDAPS URIs is 636, and the scheme is 'ldaps:' rather
[12] Fix | Delete
# than 'ldap:'. Other than that, LDAPS URIs are identical to LDAP URIs;
[13] Fix | Delete
# see URI::LDAP.
[14] Fix | Delete
class LDAPS < LDAP
[15] Fix | Delete
# A Default port of 636 for URI::LDAPS
[16] Fix | Delete
DEFAULT_PORT = 636
[17] Fix | Delete
end
[18] Fix | Delete
@@schemes['LDAPS'] = LDAPS
[19] Fix | Delete
end
[20] Fix | Delete
[21] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function