feat: Implement LdapStream, begin event loop

This commit is contained in:
selfhoster selfhoster 2026-09-01 17:57:42 +02:00
commit 1ef02c58dd
8 changed files with 152 additions and 56 deletions

4
src/ldap/mod.rs Normal file
View file

@ -0,0 +1,4 @@
mod handler;
pub use handler::ldap_handler;
mod stream;
pub use stream::{LdapStream, LdapStreamError};