Fix kep default options consistent
This commit is contained in:
parent
4e598810fd
commit
3088657309
2 changed files with 12 additions and 12 deletions
|
@ -176,12 +176,12 @@ class ShadowSocksServer(object):
|
||||||
|
|
||||||
def default_options(self):
|
def default_options(self):
|
||||||
return {
|
return {
|
||||||
"server": "127.0.0.1",
|
"server":"localhost",
|
||||||
"server_port": 8388,
|
"server_port":8388,
|
||||||
"local_port": 1081,
|
"local_port":1080,
|
||||||
"password": "Keep Your Password",
|
"password":"barfoo!",
|
||||||
"timeout": 60,
|
"timeout":600,
|
||||||
"method": "aes-128-cfb",
|
"method":"table"
|
||||||
"IPv6": False
|
"IPv6": False
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -137,12 +137,12 @@ class ShadowSocksServer(object):
|
||||||
|
|
||||||
def default_options(self):
|
def default_options(self):
|
||||||
return {
|
return {
|
||||||
"server": "127.0.0.1",
|
"server":"localhost",
|
||||||
"server_port": 8388,
|
"server_port":8388,
|
||||||
"local_port": 1081,
|
"local_port":1080,
|
||||||
"password": "Keep Your Password",
|
"password":"barfoo!",
|
||||||
"timeout": 60,
|
"timeout":600,
|
||||||
"method": "aes-128-cfb",
|
"method":"table"
|
||||||
"IPv6": False
|
"IPv6": False
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue