feat: Initial accept loop

This commit is contained in:
selfhoster selfhoster 2026-09-01 15:27:28 +02:00
commit d30df04064
10 changed files with 1764 additions and 0 deletions

9
src/cli.rs Normal file
View file

@ -0,0 +1,9 @@
use argh::FromArgs;
/// Run the llldap server
#[derive(FromArgs)]
pub struct CliArgs {
/// address or socket to listen on
#[argh(positional, default = "String::from(\"127.0.0.1:3389\")")]
pub listen: String,
}