|
@@ -4,13 +4,10 @@ import android.content.Context
|
|
|
import eu.kanade.tachiyomi.BuildConfig
|
|
|
import eu.kanade.tachiyomi.data.preference.PreferencesHelper
|
|
|
import okhttp3.Cache
|
|
|
-import okhttp3.HttpUrl.Companion.toHttpUrl
|
|
|
import okhttp3.OkHttpClient
|
|
|
-import okhttp3.dnsoverhttps.DnsOverHttps
|
|
|
import okhttp3.logging.HttpLoggingInterceptor
|
|
|
import uy.kohesive.injekt.injectLazy
|
|
|
import java.io.File
|
|
|
-import java.net.InetAddress
|
|
|
import java.util.concurrent.TimeUnit
|
|
|
|
|
|
class NetworkHelper(context: Context) {
|
|
@@ -38,25 +35,9 @@ class NetworkHelper(context: Context) {
|
|
|
builder.addInterceptor(httpLoggingInterceptor)
|
|
|
}
|
|
|
|
|
|
- if (preferences.enableDoh()) {
|
|
|
- builder.dns(
|
|
|
- DnsOverHttps.Builder().client(builder.build())
|
|
|
- .url("https://cloudflare-dns.com/dns-query".toHttpUrl())
|
|
|
- .bootstrapDnsHosts(
|
|
|
- listOf(
|
|
|
- InetAddress.getByName("162.159.36.1"),
|
|
|
- InetAddress.getByName("162.159.46.1"),
|
|
|
- InetAddress.getByName("1.1.1.1"),
|
|
|
- InetAddress.getByName("1.0.0.1"),
|
|
|
- InetAddress.getByName("162.159.132.53"),
|
|
|
- InetAddress.getByName("2606:4700:4700::1111"),
|
|
|
- InetAddress.getByName("2606:4700:4700::1001"),
|
|
|
- InetAddress.getByName("2606:4700:4700::0064"),
|
|
|
- InetAddress.getByName("2606:4700:4700::6400")
|
|
|
- )
|
|
|
- )
|
|
|
- .build()
|
|
|
- )
|
|
|
+ when (preferences.dohProvider()) {
|
|
|
+ PREF_DOH_CLOUDFLARE -> builder.dohCloudflare()
|
|
|
+ PREF_DOH_GOOGLE -> builder.dohGoogle()
|
|
|
}
|
|
|
|
|
|
builder.build()
|