[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:
@@ -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,
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user