Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
com.ccwangluo.accelerator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sheteng
com.ccwangluo.accelerator
Commits
4bf784fd
Commit
4bf784fd
authored
Mar 07, 2014
by
Max Lv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix a bypass issue
parent
1c4c54e9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
6 deletions
+15
-6
src/main/scala/com/github/shadowsocks/ShadowsocksNatService.scala
.../scala/com/github/shadowsocks/ShadowsocksNatService.scala
+2
-2
src/main/scala/com/github/shadowsocks/ShadowsocksVpnService.scala
.../scala/com/github/shadowsocks/ShadowsocksVpnService.scala
+2
-2
src/main/scala/com/github/shadowsocks/utils/ConfigUtils.scala
...main/scala/com/github/shadowsocks/utils/ConfigUtils.scala
+1
-1
src/main/scala/com/github/shadowsocks/utils/Utils.scala
src/main/scala/com/github/shadowsocks/utils/Utils.scala
+10
-1
No files found.
src/main/scala/com/github/shadowsocks/ShadowsocksNatService.scala
View file @
4bf784fd
...
...
@@ -118,7 +118,7 @@ class ShadowsocksNatService extends Service with BaseService {
Path
.
BASE
+
"ss-local.pid"
)
.
format
(
config
.
proxy
,
config
.
remotePort
,
8153
,
config
.
sitekey
,
config
.
encMethod
)
}
else
{
val
conf
=
ConfigUtils
.
PDNSD
.
format
(
"127.0.0.1"
,
getString
(
R
.
string
.
exclude
),
System
.
getDNS1
);
val
conf
=
ConfigUtils
.
PDNSD
.
format
(
"127.0.0.1"
,
getString
(
R
.
string
.
exclude
),
Utils
.
getDNS
);
ConfigUtils
.
printToFile
(
new
File
(
Path
.
BASE
+
"pdnsd.conf"
))(
p
=>
{
p
.
println
(
conf
)
})
...
...
@@ -310,8 +310,8 @@ class ShadowsocksNatService extends Service with BaseService {
// Bypass DNS servers
init_sb
.
append
(
cmd_bypass
.
replace
(
"0.0.0.0"
,
"127.0.0.1"
))
init_sb
.
append
(
cmd_bypass
.
replace
(
"0.0.0.0"
,
Utils
.
getDNS
))
init_sb
.
append
(
cmd_bypass
.
replace
(
"0.0.0.0"
,
"114.114.114.114"
))
init_sb
.
append
(
cmd_bypass
.
replace
(
"0.0.0.0"
,
"114.114.115.115"
))
if
(
hasRedirectSupport
)
{
init_sb
...
...
src/main/scala/com/github/shadowsocks/ShadowsocksVpnService.scala
View file @
4bf784fd
...
...
@@ -91,7 +91,7 @@ class ShadowsocksVpnService extends VpnService with BaseService {
Path
.
BASE
+
"ss-tunnel.pid"
)
.
format
(
config
.
proxy
,
config
.
remotePort
,
8153
,
config
.
sitekey
,
config
.
encMethod
)
}
else
{
val
conf
=
ConfigUtils
.
PDNSD
.
format
(
"0.0.0.0"
,
getString
(
R
.
string
.
exclude
),
System
.
getDNS1
)
val
conf
=
ConfigUtils
.
PDNSD
.
format
(
"0.0.0.0"
,
getString
(
R
.
string
.
exclude
),
Utils
.
getDNS
)
ConfigUtils
.
printToFile
(
new
File
(
Path
.
BASE
+
"pdnsd.conf"
))(
p
=>
{
p
.
println
(
conf
)
})
...
...
@@ -115,7 +115,7 @@ class ShadowsocksVpnService extends VpnService with BaseService {
def
isByass
(
util
:
SubnetUtils
)
:
Boolean
=
{
val
info
=
util
.
getInfo
info
.
isInRange
(
config
.
proxy
)
||
info
.
isInRange
(
"114.114.114.114"
)
||
info
.
isInRange
(
"114.114.115.115"
)
info
.
isInRange
(
config
.
proxy
)
||
info
.
isInRange
(
"114.114.114.114"
)
||
info
.
isInRange
(
Utils
.
getDNS
)
}
def
startVpn
()
{
...
...
src/main/scala/com/github/shadowsocks/utils/ConfigUtils.scala
View file @
4bf784fd
...
...
@@ -86,7 +86,7 @@ object ConfigUtils {
|
|server {
| label = "china-servers";
| ip = %s, 114.114.114.114
, 114.114.115.115
;
| ip = %s, 114.114.114.114;
| timeout = 5;
|}
|
...
...
src/main/scala/com/github/shadowsocks/utils/Utils.scala
View file @
4bf784fd
...
...
@@ -53,7 +53,7 @@ import android.os.Build
import
android.provider.Settings
import
scala.Some
import
java.security.MessageDigest
import
com.github.shadowsocks.
{
BuildConfig
}
import
com.github.shadowsocks.
{
BuildConfig
,
System
}
object
Utils
{
...
...
@@ -80,6 +80,15 @@ object Utils {
var
data_path
:
String
=
null
var
rootTries
=
0
def
getDNS
()
:
String
=
{
val
dns1
=
System
.
getDNS1
if
(
dns1
!=
null
&&
!
dns1
.
isEmpty
&&
InetAddressUtils
.
isIPv4Address
(
dns1
))
{
dns1
}
else
{
"114.114.114.114"
}
}
def
getSignature
(
context
:
Context
)
:
String
=
{
val
info
=
context
.
getPackageManager
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment