mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-05 04:47:39 +03:00
Reformat code
This commit is contained in:
parent
d5b1ff5051
commit
f6b3fd9907
3 changed files with 10 additions and 7 deletions
|
@ -31,6 +31,7 @@ class VPNService : VpnService(), PlatformInterfaceWrapper {
|
||||||
}
|
}
|
||||||
return service.onBind(intent)
|
return service.onBind(intent)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onDestroy() {
|
override fun onDestroy() {
|
||||||
service.onDestroy()
|
service.onDestroy()
|
||||||
}
|
}
|
||||||
|
@ -96,14 +97,14 @@ class VPNService : VpnService(), PlatformInterfaceWrapper {
|
||||||
}
|
}
|
||||||
|
|
||||||
val inet4RouteExcludeAddress = options.inet4RouteExcludeAddress
|
val inet4RouteExcludeAddress = options.inet4RouteExcludeAddress
|
||||||
while (inet4RouteExcludeAddress.hasNext()) {
|
while (inet4RouteExcludeAddress.hasNext()) {
|
||||||
builder.excludeRoute(inet4RouteExcludeAddress.next().toIpPrefix())
|
builder.excludeRoute(inet4RouteExcludeAddress.next().toIpPrefix())
|
||||||
}
|
}
|
||||||
|
|
||||||
val inet6RouteExcludeAddress = options.inet6RouteExcludeAddress
|
val inet6RouteExcludeAddress = options.inet6RouteExcludeAddress
|
||||||
while (inet6RouteExcludeAddress.hasNext()) {
|
while (inet6RouteExcludeAddress.hasNext()) {
|
||||||
builder.excludeRoute(inet6RouteExcludeAddress.next().toIpPrefix())
|
builder.excludeRoute(inet6RouteExcludeAddress.next().toIpPrefix())
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
val inet4RouteAddress = options.inet4RouteRange
|
val inet4RouteAddress = options.inet4RouteRange
|
||||||
if (inet4RouteAddress.hasNext()) {
|
if (inet4RouteAddress.hasNext()) {
|
||||||
|
|
|
@ -42,6 +42,7 @@ class DashboardFragment : Fragment(R.layout.fragment_dashboard) {
|
||||||
Status.Stopped -> {
|
Status.Stopped -> {
|
||||||
disablePager()
|
disablePager()
|
||||||
}
|
}
|
||||||
|
|
||||||
Status.Started -> {
|
Status.Started -> {
|
||||||
enablePager()
|
enablePager()
|
||||||
}
|
}
|
||||||
|
@ -49,6 +50,7 @@ class DashboardFragment : Fragment(R.layout.fragment_dashboard) {
|
||||||
Status.Stopping -> {
|
Status.Stopping -> {
|
||||||
disablePager()
|
disablePager()
|
||||||
}
|
}
|
||||||
|
|
||||||
else -> {}
|
else -> {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -108,7 +108,7 @@ open class CommandClient(
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun clearLog() {
|
override fun clearLog() {
|
||||||
handler.clearLog()
|
handler.clearLog()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun writeLog(message: String?) {
|
override fun writeLog(message: String?) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue