ty

Results 340 comments of ty

> os error 11001 The socket library returned `11001` error code when `ssserver` was trying to resolve domain names. I am not familiar to Windows, it seems that `11001` is...

Well, in this case, there should be something wrong in your DNS resolver that blocks the `trust-dns` resolver to resolve domain names. `trust-dns` resolver has a default 5 seconds timeout,...

I don't think it is related to the number of threads, because the whole program is running with multi-coroutines on multi-threads. https://github.com/shadowsocks/shadowsocks-rust/blob/master/src/monitor/windows.rs#L9 The ctrl-c signal should be captured by this...

Interesting. So who consumed the ctrl+c signal? Do you have any ideas?

https://github.com/shadowsocks/shadowsocks-rust/blob/master/Cargo.toml#L58 You could try to compile a binary without any logging facilities. Just remove this `"logging"` feature and compile.

Since you have disabled the log module, there will be nothing output to the console when the program running. So your problem must be related to the console output. Did...

I am using process managers to fulfill the exact same goal. OpenWRT: procd, Linux: systemd.

Well, you can always package any process managers you flavored in Dockerfile.

How about [supervisord](http://supervisord.org/), which should be relatively smaller.