Skip to content

Commit 2ee2a55

Browse files
author
blackhedd
committed
Added syntax support for SearchFilter ANDs and ORs.
1 parent 4b110ff commit 2ee2a55

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ChangeLog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
* Removed an erroneous LdapError value, noticed by Kouhei Sutou.
2222
* Supported attributes containing blanks (cn=Babs Jensen) to
2323
Filter#construct. Suggested by an anonymous Rubyforge user.
24+
* Supported several constructs from the server side of the LDAP protocol.
25+
* Added a "consuming" String#read_ber! method.
2426

2527

2628
== Net::LDAP 0.0.4: August 15, 2006

lib/net/ldap.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,9 @@ class LdapError < Exception; end
306306
7 => :string, # serverSaslCreds
307307
},
308308
:constructed => {
309-
0 => :array, # RFC-2251 Control
309+
0 => :array, # RFC-2251 Control and Filter-AND
310+
1 => :array, # SearchFilter-OR
311+
2 => :array, # SearchFilter-NOT
310312
3 => :array, # Seach referral
311313
7 => :array, # serverSaslCreds
312314
}

0 commit comments

Comments
 (0)