Commit e2c29594 authored by Max Lv's avatar Max Lv

Set different timeouts

parent 2ef042d5
...@@ -47,14 +47,14 @@ object LocalDnsService { ...@@ -47,14 +47,14 @@ object LocalDnsService {
val data = data val data = data
val profile = data.profile!! val profile = data.profile!!
fun makeDns(name: String, address: String, edns: Boolean = true): JSONObject { fun makeDns(name: String, address: String, timeout: Int, edns: Boolean = true): JSONObject {
val dns = JSONObject() val dns = JSONObject()
.put("Name", name) .put("Name", name)
.put("Address", (when (address.parseNumericAddress()) { .put("Address", (when (address.parseNumericAddress()) {
is Inet6Address -> "[$address]" is Inet6Address -> "[$address]"
else -> address else -> address
}) + ":53") }) + ":53")
.put("Timeout", 3) .put("Timeout", timeout)
.put("EDNSClientSubnet", JSONObject().put("Policy", "disable")) .put("EDNSClientSubnet", JSONObject().put("Policy", "disable"))
if (edns) dns if (edns) dns
.put("Protocol", "tcp") .put("Protocol", "tcp")
...@@ -73,10 +73,10 @@ object LocalDnsService { ...@@ -73,10 +73,10 @@ object LocalDnsService {
.put("MinimumTTL", 120) .put("MinimumTTL", 120)
.put("CacheSize", 4096) .put("CacheSize", 4096)
val remoteDns = JSONArray(profile.remoteDns.split(",") val remoteDns = JSONArray(profile.remoteDns.split(",")
.mapIndexed { i, dns -> makeDns("UserDef-" + i, dns.trim()) }) .mapIndexed { i, dns -> makeDns("UserDef-" + i, dns.trim(), 9) })
val localDns = JSONArray(arrayOf( val localDns = JSONArray(arrayOf(
makeDns("Primary-1", "119.29.29.29", false), makeDns("Primary-1", "119.29.29.29", 3, false),
makeDns("Primary-2", "114.114.114.114", false) makeDns("Primary-2", "114.114.114.114", 3, false)
)) ))
when (profile.route) { when (profile.route) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment