We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5369e14 commit b46a9feCopy full SHA for b46a9fe
app/src/main/java/com/vm/shadowsocks/core/LocalVpnService.java
@@ -380,8 +380,9 @@ private ParcelFileDescriptor establishVPN() throws Exception {
380
if (value != null && !"".equals(value) && !servers.contains(value)) {
381
servers.add(value);
382
if (value.replaceAll("\\d", "").length() == 3){//防止IPv6地址导致问题
383
- System.out.println(value);
384
builder.addRoute(value, 32);
+ } else {
385
+ builder.addRoute(value, 128);
386
}
387
if (ProxyConfig.IS_DEBUG)
388
System.out.printf("%s=%s\n", name, value);
0 commit comments