add version
This commit is contained in:
parent
761a264ed8
commit
8c5c40915e
3 changed files with 5 additions and 0 deletions
|
@ -1,6 +1,8 @@
|
|||
shadowsocks
|
||||
===========
|
||||
|
||||
Current version: 0.9
|
||||
|
||||
shadowsocks is a lightweight tunnel proxy which can help you get through firewalls
|
||||
|
||||
usage
|
||||
|
|
1
local.py
1
local.py
|
@ -128,6 +128,7 @@ class Socks5Server(SocketServer.StreamRequestHandler):
|
|||
|
||||
if __name__ == '__main__':
|
||||
os.chdir(os.path.dirname(__file__) or '.')
|
||||
print 'shadowsocks v0.9'
|
||||
|
||||
with open('config.json', 'rb') as f:
|
||||
config = json.load(f)
|
||||
|
|
|
@ -105,6 +105,8 @@ class Socks5Server(SocketServer.StreamRequestHandler):
|
|||
if __name__ == '__main__':
|
||||
os.chdir(os.path.dirname(__file__) or '.')
|
||||
|
||||
print 'shadowsocks v0.9'
|
||||
|
||||
with open('config.json', 'rb') as f:
|
||||
config = json.load(f)
|
||||
|
||||
|
|
Loading…
Reference in a new issue