feat: Search queries by mail attribute
This commit is contained in:
parent
7527ba7a09
commit
c77223048c
9 changed files with 592 additions and 78 deletions
|
|
@ -1,12 +1,14 @@
|
|||
mod client_state;
|
||||
pub use client_state::LdapClientState;
|
||||
mod dn;
|
||||
pub use dn::{Dn, InvalidDnError, NotUserDnError};
|
||||
pub use dn::{Dn, MalformedDn};
|
||||
mod filter;
|
||||
mod handler;
|
||||
mod op;
|
||||
pub use handler::ldap_handler;
|
||||
pub use op::bind::op_bind;
|
||||
pub use op::bind::{BindDn, op_bind};
|
||||
pub use op::ext::op_ext;
|
||||
pub use op::search::search_by_mail_filter;
|
||||
mod return_error;
|
||||
pub use return_error::LdapReturnError;
|
||||
mod stream;
|
||||
|
|
|
|||
Loading…
Reference in a new issue