We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ebdf42 + 74ba1ad commit f03ca70Copy full SHA for f03ca70
lib/net/ldap.rb
@@ -1194,9 +1194,16 @@ def delete_tree(args)
1194
def search_root_dse
1195
rs = search(:ignore_server_caps => true, :base => "",
1196
:scope => SearchScope_BaseObject,
1197
- :attributes => [ :namingContexts, :supportedLdapVersion,
1198
- :altServer, :supportedControl, :supportedExtension,
1199
- :supportedFeatures, :supportedSASLMechanisms])
+ :attributes => [
+ :altServer,
+ :namingContexts,
1200
+ :supportedCapabilities,
1201
+ :supportedControl,
1202
+ :supportedExtension,
1203
+ :supportedFeatures,
1204
+ :supportedLdapVersion,
1205
+ :supportedSASLMechanisms
1206
+ ])
1207
(rs and rs.first) or Net::LDAP::Entry.new
1208
end
1209
0 commit comments