mobile: increase default tcp timeouts (#1336)

This commit is contained in:
JRoberts
2022-11-09 21:24:07 +04:00
committed by GitHub
parent f80f56de61
commit 2636f2ce1c
2 changed files with 8 additions and 8 deletions

View File

@@ -1703,8 +1703,8 @@ data class NetCfg(
val defaults: NetCfg =
NetCfg(
socksProxy = null,
tcpConnectTimeout = 7_500_000,
tcpTimeout = 5_000_000,
tcpConnectTimeout = 10_000_000,
tcpTimeout = 7_000_000,
tcpKeepAlive = KeepAliveOpts.defaults,
smpPingInterval = 600_000_000
)
@@ -1712,8 +1712,8 @@ data class NetCfg(
val proxyDefaults: NetCfg =
NetCfg(
socksProxy = ":9050",
tcpConnectTimeout = 15_000_000,
tcpTimeout = 10_000_000,
tcpConnectTimeout = 20_000_000,
tcpTimeout = 15_000_000,
tcpKeepAlive = KeepAliveOpts.defaults,
smpPingInterval = 600_000_000
)

View File

@@ -634,16 +634,16 @@ public struct NetCfg: Codable, Equatable {
public static let defaults: NetCfg = NetCfg(
socksProxy: nil,
tcpConnectTimeout: 7_500_000,
tcpTimeout: 5_000_000,
tcpConnectTimeout: 10_000_000,
tcpTimeout: 7_000_000,
tcpKeepAlive: KeepAliveOpts.defaults,
smpPingInterval: 600_000_000
)
public static let proxyDefaults: NetCfg = NetCfg(
socksProxy: nil,
tcpConnectTimeout: 15_000_000,
tcpTimeout: 10_000_000,
tcpConnectTimeout: 20_000_000,
tcpTimeout: 15_000_000,
tcpKeepAlive: KeepAliveOpts.defaults,
smpPingInterval: 600_000_000
)