An open API service indexing awesome lists of open source software.

https://github.com/nooner2014/shadowsocks-java

Java port of shadowsocks.
https://github.com/nooner2014/shadowsocks-java

Last synced: about 1 year ago
JSON representation

Java port of shadowsocks.

Awesome Lists containing this project

README

          

Shadowsocks-java
===========

shadowsocks-java is a lightweight tunnel proxy which can help you get through
firewalls. It is a port of [shadowsocks](https://github.com/clowwindy/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](https://github.com/clowwindy/shadowsocks/wiki/Ports-and-Clients).

javac Shadowsocks.java
java Shadowsocks