From 9f086fab5c927d0f35488b82b38194c6b2d1a1f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Mon, 19 Feb 2024 00:49:48 +0800 Subject: [PATCH] Add support for `bypass_domain` platform HTTP proxy option --- app/src/main/java/io/nekohasekai/sfa/bg/VPNService.kt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/io/nekohasekai/sfa/bg/VPNService.kt b/app/src/main/java/io/nekohasekai/sfa/bg/VPNService.kt index ae313a5..50f838b 100644 --- a/app/src/main/java/io/nekohasekai/sfa/bg/VPNService.kt +++ b/app/src/main/java/io/nekohasekai/sfa/bg/VPNService.kt @@ -9,6 +9,7 @@ import android.os.IBinder import io.nekohasekai.libbox.TunOptions import io.nekohasekai.sfa.database.Settings import io.nekohasekai.sfa.ktx.toIpPrefix +import io.nekohasekai.sfa.ktx.toList import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.runBlocking import kotlinx.coroutines.withContext @@ -169,7 +170,9 @@ class VPNService : VpnService(), PlatformInterfaceWrapper { systemProxyEnabled = Settings.systemProxyEnabled if (systemProxyEnabled) builder.setHttpProxy( ProxyInfo.buildDirectProxy( - options.httpProxyServer, options.httpProxyServerPort + options.httpProxyServer, + options.httpProxyServerPort, + options.httpProxyBypassDomain.toList() ) ) } else {