mirror of
https://git.ngram.ca/OpenJam/rc-servers
synced 2026-08-23 23:08:52 +00:00
24 lines
561 B
Rust
24 lines
561 B
Rust
use clap::Parser;
|
|
|
|
#[derive(Parser, Debug)]
|
|
#[command(version, about, long_about = None)]
|
|
pub struct CliArgs {
|
|
/// TCP port on which to accept connections
|
|
#[arg(short, long, default_value_t = 4533)]
|
|
pub port: u16,
|
|
|
|
/// IP Address on which to accept connections
|
|
#[arg(long, default_value_t = {"127.0.0.1".to_string()})]
|
|
pub ip: String,
|
|
|
|
/// Socket read tries before giving up (0 to never give up)
|
|
#[arg(long, default_value_t = 5)]
|
|
pub retries: usize,
|
|
}
|
|
|
|
impl CliArgs {
|
|
pub fn get() -> Self {
|
|
Self::parse()
|
|
}
|
|
}
|