Arvid Norberg
Arvid Norberg
I wonder if there might be multiple paths to the tracker. Do the .torrent files use the multi-tracker extension to specify multiple tracker URLs? If so, and there are multiple...
> Yes! Due the usage of reverse proxy (Cloudflare) there are always two DNS A records (with changing ip addresses I guess). I was thinking that maybe libtorrent would treat...
Another odd thing I see is that most of the tracker responses say: ``` Transfer-Encoding: chunked ``` But the actual body isn't chunked. I suppose this isn't an actual issue,...
I might be missing something, but that looks suspicious. when `Transfer-encoding` is `chunked`, the body is supposed to be in the form: ``` \r\n \r\n \r\n \r\n ... ``` terminated...
oh, I just realized the wireshark window says "Follow HTTP stream", so it probably *does* decode the chunked body then.
one crazy thought would be to make libtorrent include an extra, extension field in the announce request, indicating what triggered it. Things, the `event=` field clearly indicates this when available,...
there's no way to avoid `mmap` allocating *virtual address space*. However, the relevant metric is *resident memory* (which is the actual amount of physical RAM used by a process. in...
> And also it can cause lags, because if pagefile is dynamic, the system will expand it with empty space. pages backed by memory mapped files are not also backed...
sorry, I accidentally clicked "edit" instead of "quote reply". And now I'm having a hard time finding the undo button.
>> I don't know what `PSS` is, do you? it sounds like it may measure something similar to virtual address space. > Yes. It's like `RES` but more precise. Don't...