Aaron Chen

Results 9 issues of Aaron Chen

Failed examples: armada 74.125.130.147 --top100 --rate-limit 2 armada 58.250.137.36 --top100 --rate-limit 9 Working examples: armada 74.125.130.147 --top100 --rate-limit 10 armada 58.250.137.36 --top100 --rate-limit 11 ~# armada --version armada 1.0.2

bug
documentation

Fix more typos.

## Description Simplify codes and reduce jumps. ## Test ``` go test ./... ``` returns ``` ok github.com/holiman/uint256 0.983s ``` ------------------- ## Benchmark ``` go test -run - -bench sh$...

The main difference is ``` z[0] = (number & (0xff00000000000000 >> offset)) >> (56 - offset) ``` vs ``` z[0] = (number >> (56 - offset)) & 0xff ``` ------------------------...

``` go test ./... ``` returns ``` ok github.com/holiman/uint256 0.977s ``` ## Bechmark for `leadingZeros` ``` go test -run - -bench BenchmarkLead -benchmem ``` code: ``` func BenchmarkLeadingZeros(bench *testing.B) {...

Please read contributing guidelines. Thanks. **Describe the bug** When browsing instagram or youtube with bypass-lan-china route, I can see quic/udp traffic for http3 in tcpdump from my server. But there...

bug

Hi, I have the following scenario of using sslocal. Related to https://github.com/shadowsocks/shadowsocks-android/issues/3070. Having 2 sslocal instance with the same config, the only difference is that one is tcp_only and the...

`hickory-dns` is enabled by default even using `--no-default-features`, though it is specified as optional in README.

Chrome, Firefox and Go enable `TCP_NODELAY` by default, and we should do the same. In addition, `badvpn/tun2socks` enabled `TCP_NODELAY` almost a decade ago.