mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-03 20:07:38 +03:00
Add support for bypass_domain
platform HTTP proxy option
This commit is contained in:
parent
9d463b269a
commit
9f086fab5c
1 changed files with 4 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue