fix(tuic): add additional configuration options for SNI, RTT reduction, UDP relay, and congestion control

This commit is contained in:
Chang lue Tsen
2025-07-03 14:45:42 -04:00
parent 189f62781e
commit 987e25e7ac
6 changed files with 46 additions and 15 deletions
+4
View File
@@ -247,6 +247,10 @@ type (
}
Tuic {
Port int `json:"port" validate:"required"`
DisableSNI bool `json:"disable_sni"`
ReduceRtt bool `json:"reduce_rtt"`
UDPRelayMode string `json:"udp_relay_mode"`
CongestionController string `json:"congestion_controller"`
SecurityConfig SecurityConfig `json:"security_config"`
}
SecurityConfig {