10 lines
341 B
Kotlin
10 lines
341 B
Kotlin
package tech.xvanturing.freeproxy.vpn.dns
|
|
|
|
import tech.xvanturing.freeproxy.vpn.net.DnsQuestion
|
|
|
|
/** DNS blocking is not used by DragonTCP Lite; this stub preserves the stack API. */
|
|
class DnsBlocker {
|
|
fun resolve(question: DnsQuestion, packageName: String?): String? = null
|
|
fun isAppBlocked(packageName: String?): Boolean = false
|
|
}
|