xtunnel 1.1.5 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- package/config/default.json +4 -4
- package/core/config.json +2 -2
- package/index.js +0 -1
- package/package.json +1 -1
package/config/default.json
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"setting": {
|
3
3
|
"localHttpPort": "10870",
|
4
|
-
"localSockPort": "
|
4
|
+
"localSockPort": "10800",
|
5
5
|
"subscribeLink": "",
|
6
6
|
"selectedServer": "",
|
7
|
-
"selectedMode": "
|
7
|
+
"selectedMode": "GLOBAL"
|
8
8
|
},
|
9
9
|
"routingPac": {
|
10
10
|
"domainStrategy": "IPOnDemand",
|
@@ -44,7 +44,7 @@
|
|
44
44
|
"udp": false,
|
45
45
|
"auth": "noauth"
|
46
46
|
},
|
47
|
-
"port": "
|
47
|
+
"port": "10800"
|
48
48
|
},
|
49
49
|
{
|
50
50
|
"listen": "127.0.0.1",
|
@@ -52,7 +52,7 @@
|
|
52
52
|
"settings": {
|
53
53
|
"timeout": 360
|
54
54
|
},
|
55
|
-
"port": "
|
55
|
+
"port": "10870"
|
56
56
|
}
|
57
57
|
],
|
58
58
|
"outbounds": [
|
package/core/config.json
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
"udp": false,
|
13
13
|
"auth": "noauth"
|
14
14
|
},
|
15
|
-
"port": "
|
15
|
+
"port": "10800"
|
16
16
|
},
|
17
17
|
{
|
18
18
|
"listen": "127.0.0.1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
"settings": {
|
21
21
|
"timeout": 360
|
22
22
|
},
|
23
|
-
"port": "
|
23
|
+
"port": "10870"
|
24
24
|
}
|
25
25
|
],
|
26
26
|
"outbounds": [
|
package/index.js
CHANGED