change default timeout

This commit is contained in:
clowwindy 2013-01-07 13:08:38 +08:00
parent fe442d2c11
commit f04c45a43d
4 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@ shadowsocks
===========
[![Build Status](https://travis-ci.org/clowwindy/shadowsocks.png)](https://travis-ci.org/clowwindy/shadowsocks)
Current version: 0.9.1
Current version: 0.9.2
shadowsocks is a lightweight tunnel proxy which can help you get through firewalls

View file

@ -3,5 +3,5 @@
"server_port":8388,
"local_port":1080,
"password":"barfoo!",
"timeout":60
"timeout":600
}

View file

@ -148,7 +148,7 @@ class Socks5Server(SocketServer.StreamRequestHandler):
if __name__ == '__main__':
os.chdir(os.path.dirname(__file__) or '.')
print 'shadowsocks v0.9.1'
print 'shadowsocks v0.9.2'
with open('config.json', 'rb') as f:
config = json.load(f)

View file

@ -125,7 +125,7 @@ class Socks5Server(SocketServer.StreamRequestHandler):
if __name__ == '__main__':
os.chdir(os.path.dirname(__file__) or '.')
print 'shadowsocks v0.9.1'
print 'shadowsocks v0.9.2'
with open('config.json', 'rb') as f:
config = json.load(f)