feat: Initial accept loop
This commit is contained in:
commit
d30df04064
10 changed files with 1764 additions and 0 deletions
9
src/cli.rs
Normal file
9
src/cli.rs
Normal 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,
|
||||
}
|
||||
Loading…
Reference in a new issue