Fix kep default options consistent

This commit is contained in:
thomashuang 2014-02-22 02:41:26 +08:00
parent 4e598810fd
commit 3088657309
2 changed files with 12 additions and 12 deletions

View file

@ -176,12 +176,12 @@ class ShadowSocksServer(object):
def default_options(self):
return {
"server": "127.0.0.1",
"server_port": 8388,
"local_port": 1081,
"password": "Keep Your Password",
"timeout": 60,
"method": "aes-128-cfb",
"server":"localhost",
"server_port":8388,
"local_port":1080,
"password":"barfoo!",
"timeout":600,
"method":"table"
"IPv6": False
}

View file

@ -137,12 +137,12 @@ class ShadowSocksServer(object):
def default_options(self):
return {
"server": "127.0.0.1",
"server_port": 8388,
"local_port": 1081,
"password": "Keep Your Password",
"timeout": 60,
"method": "aes-128-cfb",
"server":"localhost",
"server_port":8388,
"local_port":1080,
"password":"barfoo!",
"timeout":600,
"method":"table"
"IPv6": False
}