mirror of https://github.com/telemt/telemt.git
Update types.rs
This commit is contained in:
parent
7cc78a5746
commit
a5c7a41c49
|
|
@ -74,8 +74,8 @@ pub struct ProxyModes {
|
||||||
impl Default for ProxyModes {
|
impl Default for ProxyModes {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
classic: true,
|
classic: false,
|
||||||
secure: true,
|
secure: false,
|
||||||
tls: true,
|
tls: true,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -118,7 +118,7 @@ impl Default for NetworkConfig {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
ipv4: true,
|
ipv4: true,
|
||||||
ipv6: false,
|
ipv6: Some(false),
|
||||||
prefer: 4,
|
prefer: 4,
|
||||||
multipath: false,
|
multipath: false,
|
||||||
stun_servers: default_stun_servers(),
|
stun_servers: default_stun_servers(),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue