mirror of
https://github.com/lldap/lldap.git
synced 2026-07-11 04:58:36 +00:00
By making it a &'static, we can have a single allocation for all the threads/async contexts. This also normalizes the whitespace from the user input; a trailing \n can cause weird issues with clients
15 lines
407 B
Rust
15 lines
407 B
Rust
pub(crate) mod compare;
|
|
pub(crate) mod core;
|
|
pub(crate) mod create;
|
|
pub(crate) mod delete;
|
|
pub(crate) mod handler;
|
|
pub(crate) mod modify;
|
|
pub(crate) mod password;
|
|
pub(crate) mod search;
|
|
|
|
pub use core::utils::{LdapInfo, UserFieldType, map_group_field, map_user_field};
|
|
pub use handler::LdapHandler;
|
|
|
|
pub use core::group::get_default_group_object_classes;
|
|
pub use core::user::get_default_user_object_classes;
|