From 5ee5b32d64e8e14545d61494adfd5a3f9b7c2948 Mon Sep 17 00:00:00 2001 From: Stan Grams Date: Mon, 23 Feb 2026 12:12:49 +0100 Subject: [PATCH] [chore](trx-client): update default ports to 4530/4531 Change default remote connection port from 4532 to 4530 and audio server_port from 4533 to 4531. Co-authored-by: Claude Sonnet 4.6 Signed-off-by: Stan Grams --- src/trx-client/src/config.rs | 2 +- src/trx-client/src/remote_client.rs | 2 +- trx-client.toml.example | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/trx-client/src/config.rs b/src/trx-client/src/config.rs index 2f851c8..85c046b 100644 --- a/src/trx-client/src/config.rs +++ b/src/trx-client/src/config.rs @@ -109,7 +109,7 @@ impl Default for AudioClientConfig { fn default() -> Self { Self { enabled: true, - server_port: 4533, + server_port: 4531, bridge: AudioBridgeConfig::default(), } } diff --git a/src/trx-client/src/remote_client.rs b/src/trx-client/src/remote_client.rs index b0a8edc..89f83c7 100644 --- a/src/trx-client/src/remote_client.rs +++ b/src/trx-client/src/remote_client.rs @@ -16,7 +16,7 @@ use trx_core::{RigError, RigResult}; use trx_protocol::rig_command_to_client; use trx_protocol::{ClientCommand, ClientEnvelope, ClientResponse}; -const DEFAULT_REMOTE_PORT: u16 = 4532; +const DEFAULT_REMOTE_PORT: u16 = 4530; const CONNECT_TIMEOUT: Duration = Duration::from_secs(5); const IO_TIMEOUT: Duration = Duration::from_secs(10); const MAX_JSON_LINE_BYTES: usize = 16 * 1024; diff --git a/trx-client.toml.example b/trx-client.toml.example index 8b98d8f..91e89c1 100644 --- a/trx-client.toml.example +++ b/trx-client.toml.example @@ -82,7 +82,7 @@ port = 0 # Enable remote audio stream and decode transport enabled = true # Remote trx-server audio port -server_port = 4533 +server_port = 4531 [frontends.audio.bridge] # Enable local cpal bridge for WSJT-X virtual audio routing