shadowsocks-libuv
shadowsocks-libuv copied to clipboard
A Lightweight and Super Fast Server for shadowsocks.
GitHub changed the way Markdown headings are parsed, so this change fixes it. See [bryant1410/readmesfix](https://github.com/bryant1410/readmesfix) for more information. Tackles bryant1410/readmesfix#1
when I use make to build this project in mac. I get a unknow error. $ make cc -Wall -O2 -DNDEBUG -I libuv/include -std=gnu99 -L/usr/local/opt/openssl/lib -I/usr/local/opt/openssl/include -o \ server server.c...
Server always shutdown irregularly, add option 'run as daemon' to ensure it can restart automatically.
encryption updates such as aes-128-cfb, aes-192-cfb, aes-256-cfb, bf-cfb?
Debian 6, 2.6.32 配置里用的是 IPv4 的格式 `#define SERVER_LISTEN "::ffff:123.123.123.123"` ``` $ ./server 2013-03-28 13:46:32 INFO: Shadowsocks Version:0.2 libuv(0.9) Written by Dndx(idndx.com) 2013-03-28 13:46:32 INFO: Using shadowcrypt crypto 2013-03-28 13:46:32 INFO:...
I built shadowsocks-libuv by MinGW32 toolchain with some small fix in Makefile: LIBUVFLAGS = "OS=mingw" CFLAGS += -D_WIN32_WINNT=0x0600 -I"f:/openssl-0.9.8k_WIN32/include" LDFLAGS += f:/openssl-0.9.8k_WIN32/lib/ssleay32.lib f:/openssl-0.9.8k_WIN32/lib/libeay32.lib -lws2_32 -lmswsock -lkernel32 -luser32 -lgdi32 -lpsapi -liphlpapi...
@clowwindy @madeye RC4 have a very simple algorithm and can be implemented in just few lines of code. According to my test, we only need the `EVP_BytesToKey(3)` to make password...