diff --git a/README.md b/README.md index 71cb3c5f..63eadc01 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,10 @@ Create a shadowsocks' configuration file. Example "local_port": 1080, "password": "mypassword", "timeout": 300, - "method": "aes-256-cfb" + "method": "aes-256-cfb", + + "http_local_port": 10240, + "http_local_address": "127.0.0.1", } ``` @@ -79,7 +82,10 @@ In shadowsocks-rust, we also have an extended configuration file format, which i } ], "local_port": 8388, - "local_address": "127.0.0.1" + "local_address": "127.0.0.1", + + "http_local_port": 10240, + "http_local_address": "127.0.0.1", } ``` @@ -122,8 +128,9 @@ Currently it uses [coio-rs](https://github.com/zonyitoo/coio-rs) as the backend - [ ] PAC - [x] Improved logging format (waiting for the new official log crate) - [ ] Support more ciphers without depending on `libcrypto` (waiting for an acceptable Rust crypto lib implementation) -- [ ] Windows support. Depending on Mio and Coio-rs. -- [ ] Build with stable. +- [ ] Windows support. (Depending on mio and coio-rs) +- [ ] Build with stable. (Depending on coio) +- [x] Support HTTP Proxy protocol ## License