Support SSH aliases in Dosh client installs
ci / test (push) Has been cancelled
ci / remote-bench (push) Has been cancelled

This commit is contained in:
Codex
2026-06-11 08:46:24 -04:00
parent 6cfba5329d
commit 12beb04d4d
6 changed files with 19 additions and 17 deletions
+2 -2
View File
@@ -46,7 +46,7 @@ impl Default for ServerConfig {
pub struct ClientConfig {
pub server: String,
pub dosh_host: Option<String>,
pub ssh_port: u16,
pub ssh_port: Option<u16>,
pub dosh_port: u16,
pub default_session: String,
pub reconnect_timeout_secs: u64,
@@ -60,7 +60,7 @@ impl Default for ClientConfig {
Self {
server: "user@example.com".to_string(),
dosh_host: None,
ssh_port: 22,
ssh_port: None,
dosh_port: 50000,
default_session: "default".to_string(),
reconnect_timeout_secs: 5,