We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a7ab22 commit 5e75156Copy full SHA for 5e75156
core/src/main/java/com/github/shadowsocks/bg/VpnService.kt
@@ -81,7 +81,7 @@ class VpnService : BaseVpnService(), BaseService.Interface {
81
} catch (e: IOException) {
82
when ((e.cause as? ErrnoException)?.errno) {
83
// also suppress ENONET (Machine is not on the network)
84
- OsConstants.EPERM, 64 -> Timber.d(e)
+ OsConstants.EPERM, OsConstants.EACCES, 64 -> Timber.d(e)
85
else -> Timber.w(e)
86
}
87
return@let false
0 commit comments