shadowsocks-java
shadowsocks-java copied to clipboard
shadowsocks server base on netty4 , tcp & udp full support,
Bumps [gson](https://github.com/google/gson) from 2.8.5 to 2.8.9. Release notes Sourced from gson's releases. Gson 2.8.9 Make OSGi bundle's dependency on sun.misc optional (#1993). Deprecate Gson.excluder() exposing internal Excluder class (#1986). Prevent...
Bumps log4j-core from 2.6.2 to 2.16.0. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
Bumps [bcprov-jdk15on](https://github.com/bcgit/bc-java) from 1.59 to 1.67. Changelog Sourced from bcprov-jdk15on's changelog. 2.1.1 Version Release: 1.70 Date: TBD 2.2.1 Version Release: 1.69 Date: 2021, June 7th. ... (truncated) Commits See full...
我看 CryptAeadBase 里面有 //TODO unfinished. 比如 ChaCha20Poly1305 的支持?
这个加密方法貌似有点问题,测试了下,无法代理, 服务端是 ss-libev
-c 选项好像不起作用了 java -jar shadowsocks-netty-server-1.1.0.jar -c
Bumps [tink](https://github.com/google/tink) from 1.2.0 to 1.5.0. Release notes Sourced from tink's releases. Tink 1.4.0 Tink is a multi-language, cross-platform library that provides simple and misuse-proof APIs for common cryptographic tasks....
Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...
进程启动后,用jmap测了下java对象所占用的内存其实没多少, 但是最后java进程占用的总内存大概是python版的2倍以上(启动相同的端口数目情况下) java版本的文件句柄有这么吃内存么 = = 。。。。
研究学习
代码跑了下,手机测试无法使用,进去后直接进入 ``` protected void channelRead0(ChannelHandlerContext ctx, Object msg) throws Exception { boolean isUdp = ctx.channel().attr(SSCommon.IS_UDP).get(); if (isUdp) { DatagramPacket udpRaw = ((DatagramPacket) msg); if (udpRaw.content().readableBytes() < 4) { //no cipher,...