Browse Source

update document

pull/4/head
Max Lv 11 years ago
parent
commit
3964ab4e55
3 changed files with 27 additions and 3 deletions
  1. 26
      README.md
  2. 1
      debian/changelog
  3. 3
      src/utils.c

26
README.md

@ -11,7 +11,28 @@ It is a port of [shadowsocks](https://github.com/clowwindy/shadowsocks)
created by [@clowwindy](https://github.com/clowwindy) maintained by
[@madeye](https://github.com/madeye).
Current version: 1.2 [![Build Status](https://travis-ci.org/madeye/shadowsocks-libev.png?branch=master)](https://travis-ci.org/madeye/shadowsocks-libev)
Current version: 1.3 [![Build Status](https://travis-ci.org/madeye/shadowsocks-libev.png?branch=master)](https://travis-ci.org/madeye/shadowsocks-libev)
Changelog
---------
shadowsocks 1.3 -- Thu, 16 May 2013 10:51:15 +0800
* Able to bind connections to specific interface
* Support more ciphers: aes-128-cfb, aes-192-cfb, aes-256-cfb, bf-cfb, cast5-cfb, des-cfb
shadowsocks 1.2 -- Tue, 07 May 2013 14:10:33 +0800
* Close timeouted TCP connections
* Fix a high load issue
shadowsocks 1.1 -- Wed, 10 Apr 2013 12:11:36 +0800
* Fix a IPV6 resolve issue
shadowsocks 1.0 -- Sat, 06 Apr 2013 16:59:15 +0800
* Initial release
Features
--------
@ -52,7 +73,8 @@ usage:
options:
encrypt_method: table, rc4
encrypt_method: table, rc4, aes-128-cfb, aes-192-cfb, aes-256-cfb,
bf-cfb, cast5-cfb, des-cfb
pid_file: valid path to the pid file
timeout: socket timeout in senconds
config_file: json format config file

1
debian/changelog

@ -1,6 +1,7 @@
shadowsocks (1.3-1) unstable; urgency=low
* Able to bind connections to specific interface
* Support more ciphers: aes-128-cfb, aes-192-cfb, aes-256-cfb, bf-cfb, cast5-cfb, des-cfb
-- Max Lv <max.c.lv@gmail.com> Thu, 16 May 2013 10:51:15 +0800

3
src/utils.c

@ -70,7 +70,8 @@ void usage() {
printf(" [-m encrypt_method] [-f pid_file] [-t timeout] [-c config_file]\n");
printf("\n");
printf(" options:\n\n");
printf(" encrypt_method: table, rc4\n");
printf(" encrypt_method: table, rc4, aes-128-cfb, aes-192-cfb, aes-256-cfb,\n");
printf(" bf-cfb, cast5-cfb, des-cfb\n");
printf(" pid_file: valid path to the pid file\n");
printf(" timeout: socket timeout in senconds\n");
printf(" config_file: json format config file\n");

Loading…
Cancel
Save