mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-03 20:07:38 +03:00
Add workaround for golang/go#68760
This commit is contained in:
parent
64765ccba2
commit
72e3014ee6
1 changed files with 20 additions and 3 deletions
|
@ -4,6 +4,10 @@ import android.net.Network
|
||||||
import android.os.Build
|
import android.os.Build
|
||||||
import io.nekohasekai.libbox.InterfaceUpdateListener
|
import io.nekohasekai.libbox.InterfaceUpdateListener
|
||||||
import io.nekohasekai.sfa.Application
|
import io.nekohasekai.sfa.Application
|
||||||
|
import io.nekohasekai.sfa.BuildConfig
|
||||||
|
import kotlinx.coroutines.Dispatchers
|
||||||
|
import kotlinx.coroutines.GlobalScope
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
import java.net.NetworkInterface
|
import java.net.NetworkInterface
|
||||||
|
|
||||||
object DefaultNetworkMonitor {
|
object DefaultNetworkMonitor {
|
||||||
|
@ -55,12 +59,25 @@ object DefaultNetworkMonitor {
|
||||||
Thread.sleep(100)
|
Thread.sleep(100)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
listener.updateDefaultInterface(interfaceName, interfaceIndex)
|
// TODO: remove launch after fixed
|
||||||
|
// https://github.com/golang/go/issues/68760
|
||||||
|
if (BuildConfig.DEBUG) {
|
||||||
|
GlobalScope.launch(Dispatchers.IO) {
|
||||||
|
listener.updateDefaultInterface(interfaceName, interfaceIndex)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
listener.updateDefaultInterface(interfaceName, interfaceIndex)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
listener.updateDefaultInterface("", -1)
|
if (BuildConfig.DEBUG) {
|
||||||
|
GlobalScope.launch(Dispatchers.IO) {
|
||||||
|
listener.updateDefaultInterface("", -1)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
listener.updateDefaultInterface("", -1)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue