Update types.rs

This commit is contained in:
Alexey 2026-02-23 02:48:03 +03:00 committed by GitHub
parent 7cc78a5746
commit a5c7a41c49
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -74,8 +74,8 @@ pub struct ProxyModes {
impl Default for ProxyModes {
fn default() -> Self {
Self {
classic: true,
secure: true,
classic: false,
secure: false,
tls: true,
}
}
@ -118,7 +118,7 @@ impl Default for NetworkConfig {
fn default() -> Self {
Self {
ipv4: true,
ipv6: false,
ipv6: Some(false),
prefer: 4,
multipath: false,
stun_servers: default_stun_servers(),