GDR!
GDR!
I've had the same issue, it was because for some reason (timeout?) downloading stopped at 20 MB, no exception was raised and then hash validation failed. I can send a...
Like this? https://github.com/waydroid/waydroid/pull/165 The current code looks like it doesn't even know if the download failed. If it did, you could download to `xx.tmp` then `os.rename(xx.tmp, xx)`, retry the download,...
It did not help - the config file is created at this point and the subsequent `waydroid init` returns `Already initialized` anyway. This seemed to help: https://github.com/gjedeer/waydroid/commit/2ad18fc62053dcd5ab27b767abeb871733d3d642 - it's a...
I kind of like that the client mode ToxIDs are ephemeral by default, it was by design. Server mode is where storing the configuration is needed, but there are 2...
There was a closed issue about this. I tried and failed, nobody else bothered. There is an exe file attached to the other issue which works but crashes sometimes. On...
I gave it another shot and basically I don't think it's possible without a lot of #ifdefs for switching to Windows sockets API. In my opinion the best way to...
Mid sharing your source? Overall my stand on the Windows issue is: https://github.com/gjedeer/tuntox/issues/33#issuecomment-439614638 - there's no point in porting it as is, it will add unwanted complexity to the code,...
> also this line means that you will RUN a tcp relay Yes, I'm aware. If `--help` is not clear about it, your suggestion on different wording is welcome. I...
There's the `-f` option introduced by this pull request https://github.com/gjedeer/tuntox/pull/26 Noone bothered to document it but the filter file goes like this: ``` 1.2.3.4:22 127.0.0.1:80 ``` etc. If you need...
Idea for implementation: check `tox_friend_get_connection_status` periodically. A full implementation would probably send a ping packet every now and then too, but that would be a good start. Also: this would...