yamldap 0.1.3

A lightweight LDAP server that serves directory data from YAML files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod ad_compat;
pub mod bind;
pub mod filters;
pub mod operations;
pub mod protocol;
pub mod simple_protocol;

pub use bind::handle_bind_request;
pub use filters::{parse_ldap_filter, LdapFilter};
pub use operations::{handle_operation, LdapOperation};
pub use protocol::{LdapMessage, LdapMessageId, LdapProtocolOp, LdapResultCode};
pub use simple_protocol::SimpleLdapCodec;