Skip to content

Commit

Permalink
fix: switch back to Google DNS servers
Browse files Browse the repository at this point in the history
  • Loading branch information
lost-illusi0n committed Nov 26, 2023
1 parent 8c68fe3 commit 9643187
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import mu.KotlinLogging

private val logger = KotlinLogging.logger { }

//private val GOOGLE_DNS = listOf("8.8.8.8", "8.8.4.4").map { DnsServer(it) } // Google's Public DNS
//private val dns = Dns(defaultServers = GOOGLE_DNS)
private val dns = Dns(defaultServers = listOf(DnsServer("192.168.1.1")))
private val GOOGLE_DNS = listOf("8.8.8.8", "8.8.4.4").map { DnsServer(it) } // Google's Public DNS
private val dns = Dns(defaultServers = GOOGLE_DNS)
//private val dns = Dns(defaultServers = listOf(DnsServer("192.168.1.1")))

data class TransferConfig(
val domain: Domain,
Expand Down

0 comments on commit 9643187

Please sign in to comment.