@@ -114,25 +114,40 @@ class ShadowsocksNatService extends Service with BaseService {
114
114
})
115
115
}
116
116
117
- val raw_args = (" ss-local -b 127.0.0.1 -s %s -p %d -l %d -k %s -m %s -f " +
118
- Path .BASE + " ss-local.pid" )
119
- .format(config.proxy, config.remotePort, config.localPort, config.sitekey, config.encMethod)
120
- val args = if (Build .VERSION .SDK_INT >= 20 ) {
121
- raw_args
122
- } else {
123
- Path .BASE + raw_args
117
+ val cmd = new ArrayBuffer [String ]
118
+ cmd += (" ss-local"
119
+ , " -b" , " 127.0.0.1"
120
+ , " -s" , config.proxy
121
+ , " -p" , config.remotePort.toString
122
+ , " -l" , config.localPort.toString
123
+ , " -k" , config.sitekey
124
+ , " -m" , config.encMethod
125
+ , " -f" , (Path .BASE + " ss-local.pid" ))
126
+
127
+ if (config.isGFWList && isACLEnabled) {
128
+ cmd += " --acl"
129
+ cmd += (Path .BASE + " chn.acl" )
124
130
}
125
- val cmd = if (config.isGFWList && isACLEnabled) args + " --acl " + Path .BASE + " chn.acl" else args
126
- if (BuildConfig .DEBUG ) Log .d(TAG , cmd)
127
131
128
- Core .sslocal(cmd.split(" " ))
132
+ if (BuildConfig .DEBUG ) Log .d(TAG , cmd.mkString(" " ))
133
+
134
+ Core .sslocal(cmd.toArray)
129
135
}
130
136
131
137
def startDnsDaemon () {
132
- val args = if (config.isUdpDns) {
133
- (" ss-tunnel -b 127.0.0.1 -s %s -p %d -l %d -k %s -m %s -L 8.8.8.8:53 -u -f " +
134
- Path .BASE + " ss-tunnel.pid" )
135
- .format(config.proxy, config.remotePort, 8153 , config.sitekey, config.encMethod)
138
+ if (config.isUdpDns) {
139
+ val cmd = new ArrayBuffer [String ]
140
+ cmd += (" ss-tunnel" , " -u"
141
+ , " -b" , " 127.0.0.1"
142
+ , " -l" , " 8153"
143
+ , " -L" , " 8.8.8.8:53"
144
+ , " -s" , config.proxy
145
+ , " -p" , config.remotePort.toString
146
+ , " -k" , config.sitekey
147
+ , " -m" , config.encMethod
148
+ , " -f" , (Path .BASE + " ss-tunnel.pid" ))
149
+ if (BuildConfig .DEBUG ) Log .d(TAG , cmd.mkString(" " ))
150
+ Core .sstunnel(cmd.toArray)
136
151
} else {
137
152
val conf = {
138
153
if (config.isGFWList)
@@ -143,20 +158,15 @@ class ShadowsocksNatService extends Service with BaseService {
143
158
ConfigUtils .printToFile(new File (Path .BASE + " pdnsd.conf" ))(p => {
144
159
p.println(conf)
145
160
})
146
- " pdnsd -c " + Path .BASE + " pdnsd.conf"
147
- }
148
-
149
- val cmd = if (Build .VERSION .SDK_INT >= 20 ) {
150
- " /system/bin/" + args
151
- } else {
152
- Path .BASE + args
153
- }
154
161
155
- if ( BuildConfig . DEBUG ) Log .d( TAG , cmd)
162
+ val args = " pdnsd -c " + Path . BASE + " pdnsd.conf "
156
163
157
- if (config.isUdpDns) {
158
- Core .sstunnel(cmd.split(" " ))
159
- } else {
164
+ val cmd = if (Build .VERSION .SDK_INT >= 20 ) {
165
+ " /system/bin/" + args
166
+ } else {
167
+ Path .BASE + args
168
+ }
169
+ if (BuildConfig .DEBUG ) Log .d(TAG , cmd)
160
170
Console .runRootCommand(cmd)
161
171
}
162
172
}
0 commit comments