Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 615 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 615 Bytes

Shadowsocks-java

shadowsocks-java is a lightweight tunnel proxy which can help you get through firewalls. It is a port of shadowsocks.

Only support TABLE encryption.

For Developers

Example:

Shadowsocks sc = new Shadowsocks("example.com", 1234, "password");
sc.start(8080);
// Do other things
sc.stop();

For Users

Recommended to use more stable version.

javac Shadowsocks.java
java Shadowsocks <localPort> <serverAddr> <serverPort> <key>