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): 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
} }

View file

@ -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
} }