forked from shadowsocks/shadowsocks-android
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'shadowsocks/master' into noad
- Loading branch information
Showing
8 changed files
with
38 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -275,7 +275,7 @@ | |
<body> | ||
<p>A <a href="http://shadowsocks.org">Shadowsocks</a> client for Android, written in Scala.</p> | ||
<p>Copyright (C) 2017 by Max Lv <a href="mailto:max.c.lv@gmail.com">max.c.lv@gmail.com</a></p> | ||
<p>Copyright (C) 2017 by Mygod Studio <a href="[email protected]">[email protected]</a></p> | ||
<p>Copyright (C) 2017 by Mygod Studio <a href="mailto:[email protected]">[email protected]</a></p> | ||
<p>This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule shadowsocks-libev
updated
40 files
+4 −0 | .gitmodules | |
+1 −1 | .travis.yml | |
+3 −2 | Makefile.am | |
+18 −11 | README.md | |
+4 −4 | completions/bash/ss-local | |
+4 −8 | completions/bash/ss-manager | |
+4 −4 | completions/bash/ss-redir | |
+4 −4 | completions/bash/ss-server | |
+4 −4 | completions/bash/ss-tunnel | |
+5 −59 | configure.ac | |
+6 −4 | debian/README.Debian | |
+1 −1 | debian/compat | |
+7 −11 | debian/control | |
+25 −0 | debian/copyright | |
+5 −6 | debian/rules | |
+1 −0 | debian/shadowsocks-libev.docs | |
+1 −1 | debian/shadowsocks-libev.postinst | |
+2 −1 | debian/watch | |
+1 −0 | libbloom | |
+173 −0 | scripts/build_deb.sh | |
+4 −0 | scripts/iperf.sh | |
+4 −1 | src/Makefile.am | |
+10 −1 | src/acl.c | |
+26 −35 | src/aead.c | |
+20 −6 | src/crypto.c | |
+20 −1 | src/crypto.h | |
+1 −3 | src/jconf.c | |
+0 −1 | src/jconf.h | |
+8 −5 | src/local.c | |
+3 −16 | src/manager.c | |
+0 −1 | src/manager.h | |
+20 −8 | src/plugin.c | |
+98 −0 | src/ppbloom.c | |
+31 −0 | src/ppbloom.h | |
+6 −3 | src/redir.c | |
+13 −4 | src/server.c | |
+35 −51 | src/stream.c | |
+7 −4 | src/tunnel.c | |
+13 −0 | src/utils.c | |
+1 −0 | src/utils.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters