fix(remoteingress-core): default edge transport mode to QUIC with fallback
This commit is contained in:
@@ -220,7 +220,7 @@ async fn edge_main_loop(
|
||||
let mut backoff_ms: u64 = 1000;
|
||||
let max_backoff_ms: u64 = 30000;
|
||||
|
||||
let transport_mode = config.transport_mode.unwrap_or(TransportMode::TcpTls);
|
||||
let transport_mode = config.transport_mode.unwrap_or(TransportMode::QuicWithFallback);
|
||||
|
||||
// Build TLS config ONCE outside the reconnect loop — preserves session
|
||||
// cache across reconnections for TLS session resumption (saves 1 RTT).
|
||||
|
||||
Reference in New Issue
Block a user