This commit is contained in:
2026-08-16 03:48:57 -03:00
parent 5621de243a
commit c02b36c83d
48 changed files with 5398 additions and 2221 deletions
@@ -0,0 +1,9 @@
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
}