Supported some additional BER encodings.
This commit is contained in:
parent
1314cd1f28
commit
7fe954f199
3 changed files with 4 additions and 1 deletions
|
@ -23,7 +23,8 @@
|
||||||
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.
|
* Supported several constructs from the server side of the LDAP protocol.
|
||||||
* Added a "consuming" String#read_ber! method.
|
* Added a "consuming" String#read_ber! method.
|
||||||
* Added missing synactic support for Filter ANDs and NOTs.
|
* Added missing synactic support for Filter ANDs, NOTs and a few other
|
||||||
|
things.
|
||||||
|
|
||||||
|
|
||||||
== Net::LDAP 0.0.4: August 15, 2006
|
== Net::LDAP 0.0.4: August 15, 2006
|
||||||
|
|
|
@ -88,6 +88,7 @@ module Net
|
||||||
2 => :integer,
|
2 => :integer,
|
||||||
4 => :string,
|
4 => :string,
|
||||||
10 => :integer,
|
10 => :integer,
|
||||||
|
13 => :string # (OID)
|
||||||
},
|
},
|
||||||
:constructed => {
|
:constructed => {
|
||||||
16 => :array,
|
16 => :array,
|
||||||
|
|
|
@ -310,6 +310,7 @@ module Net
|
||||||
1 => :array, # SearchFilter-OR
|
1 => :array, # SearchFilter-OR
|
||||||
2 => :array, # SearchFilter-NOT
|
2 => :array, # SearchFilter-NOT
|
||||||
3 => :array, # Seach referral
|
3 => :array, # Seach referral
|
||||||
|
4 => :array, # unknown use in Microsoft Outlook
|
||||||
7 => :array, # serverSaslCreds
|
7 => :array, # serverSaslCreds
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue