Skip to content

Commit 893d0d9

Browse files
committed
Add clap to the main server with --host flag
1 parent 1f96ae7 commit 893d0d9

File tree

3 files changed

+138
-2
lines changed

3 files changed

+138
-2
lines changed

Cargo.lock

+118-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/sshx-server/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ edition = "2021"
66
[dependencies]
77
anyhow = "1.0.53"
88
axum = "0.4.5"
9+
clap = { version = "3.1.6", features = ["derive"] }
910
hyper = { version = "0.14.17", features = ["full"] }
1011
sshx-core = { path = "../sshx-core" }
1112
tokio = { version = "1.16.1", features = ["full"] }

crates/sshx-server/src/main.rs

+19-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,30 @@
1+
use std::net::SocketAddr;
2+
13
use anyhow::Result;
4+
use clap::Parser;
25
use sshx_server::make_server_bind;
36
use tokio::signal::unix::{signal, SignalKind};
47

8+
/// The sshx server CLI interface.
9+
#[derive(Parser, Debug)]
10+
#[clap(author, version, about, long_about = None)]
11+
struct Args {
12+
/// Specify port to listen on.
13+
#[clap(long, default_value_t = 8051)]
14+
port: u16,
15+
16+
/// Whether to expose the server on all network interfaces.
17+
#[clap(long)]
18+
host: bool,
19+
}
20+
521
#[tokio::main]
622
async fn main() -> Result<()> {
723
tracing_subscriber::fmt::init();
824

9-
let addr = "[::1]:8051".parse()?;
25+
let args = Args::parse();
26+
let host = if args.host { "::" } else { "::1" };
27+
let addr = SocketAddr::new(host.parse()?, args.port);
1028

1129
let mut sigterm = signal(SignalKind::terminate())?;
1230
let mut sigint = signal(SignalKind::interrupt())?;

0 commit comments

Comments
 (0)