Linus Färnstrand
Linus Färnstrand
This would be really helpful. On some projects I set specific `RUSTFLAGS` when I run some tests. For example `RUSTFLAGS="--cfg loom" cargo test` in a separate terminal. Since cargo is...
Nice! I did not know there were/was going to be a separate examples repository. I think that makes a lot of sense to have more advanced examples there. It makes...
What kind of base structure would you want in that repository? A single crate with a bunch of example binaries? I can wait until you set up the base over...
> Each example should be its own binary package placed within the root of this repository A downside of this is that there will be a lot of duplication. That...
It seems possible to work around this issue. When hitting this bug we ran Shadowsocks in the following fashion: ```rust let result = runtime.block_on(shadowsocks_future.select2(abort_signal)); match result {...} runtime.shutdown_now().wait().unwrap(); ``` But...
Yes, there are many ways to get rid of `result`. The main point being that what causes the problem is if the runtime is shut down while some listening socket...
We will likely not implement this on Windows at least. Because we have looked at what would be needed and it's more work than a simple negation of some firewall...
First of all, you can use `mullvad connect --wait` to make the command block until it's connected. So you don't need to parse the output of `mullvad status` to figure...
Are you sure selecting specific ports will help? They might treat port 53 differently to make DNS work. But if they are blocking UDP on that network I doubt selecting...
1) It's already in our `master` branch. It will come in the next release. 2) Should be easy to implement, but we have not started. Expect it in one to...