Updated readme

This commit is contained in:
Y. T. Chung
2016-10-21 01:16:57 +08:00
parent bbfcec5326
commit fe5003f9a2

View File

@@ -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
- [ ] <del>PAC</del>
- [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