ty

Results 299 comments of ty

jemalloc may increase binary size, which is not good for embedded environments.

The listeners are created on the stack of the internal local tasks. How can you retrieve the references of them and call the `local_addr` to fulfill your goal? I would...

I don't want to expose the underlying socks server. Making APIs public will require more works to maintain API stability. Why not just select a random port prior to create...

Further more, if you set `127.0.0.1:0` to local listen address, then TCP and UDP sockets may listen to different ports.

https://github.com/shadowsocks/shadowsocks-rust/blob/7388ddfb7d36d5b84908c476daabc91c8b065a37/crates/shadowsocks/src/plugin/mod.rs#L232-L235 Just 2 lines of code. KISS.

> Also removing local_address and local_port in server config results Network is unreachable error in server side. There must be something wrong in your route table. Can you `curl` any...

`sslocal` must be started with `protocol: redir` and listens to different addresses for IPv4 and IPv6. You cannot use one local instance to handle both IPv4 and IPv6 traffic. How...

> can make shadowsocks-rust listen to ipv6 and ipv4 same time? If you mean dual-stack, of course, because it is a system provided feature, just set `local_address` to `::` will...