Added syntax support for SearchFilter ANDs and ORs.
This commit is contained in:
parent
4b110ff886
commit
2ee2a551b1
2 changed files with 5 additions and 1 deletions
|
@ -21,6 +21,8 @@
|
||||||
* Removed an erroneous LdapError value, noticed by Kouhei Sutou.
|
* Removed an erroneous LdapError value, noticed by Kouhei Sutou.
|
||||||
* Supported attributes containing blanks (cn=Babs Jensen) to
|
* Supported attributes containing blanks (cn=Babs Jensen) to
|
||||||
Filter#construct. Suggested by an anonymous Rubyforge user.
|
Filter#construct. Suggested by an anonymous Rubyforge user.
|
||||||
|
* Supported several constructs from the server side of the LDAP protocol.
|
||||||
|
* Added a "consuming" String#read_ber! method.
|
||||||
|
|
||||||
|
|
||||||
== Net::LDAP 0.0.4: August 15, 2006
|
== Net::LDAP 0.0.4: August 15, 2006
|
||||||
|
|
|
@ -306,7 +306,9 @@ module Net
|
||||||
7 => :string, # serverSaslCreds
|
7 => :string, # serverSaslCreds
|
||||||
},
|
},
|
||||||
:constructed => {
|
:constructed => {
|
||||||
0 => :array, # RFC-2251 Control
|
0 => :array, # RFC-2251 Control and Filter-AND
|
||||||
|
1 => :array, # SearchFilter-OR
|
||||||
|
2 => :array, # SearchFilter-NOT
|
||||||
3 => :array, # Seach referral
|
3 => :array, # Seach referral
|
||||||
7 => :array, # serverSaslCreds
|
7 => :array, # serverSaslCreds
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue