[chore](trx-server): update default ports to 4530/4531

Change JSON TCP listener default from 4532 to 4530 and audio
streaming default from 4533 to 4531.

Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
Signed-off-by: Stan Grams <stanislawgrams@gmail.com>
This commit is contained in:
2026-02-23 12:12:04 +01:00
parent fa26d154b1
commit 5dc2b923d1
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -150,7 +150,7 @@ impl Default for ListenConfig {
Self { Self {
enabled: true, enabled: true,
listen: IpAddr::V4(std::net::Ipv4Addr::LOCALHOST), listen: IpAddr::V4(std::net::Ipv4Addr::LOCALHOST),
port: 4532, port: 4530,
auth: AuthConfig::default(), auth: AuthConfig::default(),
} }
} }
@@ -195,7 +195,7 @@ impl Default for AudioConfig {
Self { Self {
enabled: true, enabled: true,
listen: IpAddr::V4(std::net::Ipv4Addr::LOCALHOST), listen: IpAddr::V4(std::net::Ipv4Addr::LOCALHOST),
port: 4533, port: 4531,
rx_enabled: true, rx_enabled: true,
tx_enabled: true, tx_enabled: true,
device: None, device: None,
+1 -1
View File
@@ -58,7 +58,7 @@ enabled = true
listen = "127.0.0.1" listen = "127.0.0.1"
# TCP port to listen on # TCP port to listen on
port = 4532 port = 4530
[listen.auth] [listen.auth]
# Authentication tokens (empty = no auth required) # Authentication tokens (empty = no auth required)