Arvid Norberg

Results 1037 comments of Arvid Norberg

my understanding is that what you see are connections made to the other peers, they exchange handshake and realize they're both seeds and disconnect. The inactivity timeout is about peers...

having looked over this issue again, I think there's a risk you have ABI incompatibilities because you don't user `pkg-config` to pick up the libtorrent include path, library path and...

the error message translates to: "No such device or address". @Aleksman4o are the paths correct?

a relevant log line is: ``` storage_moved_failed_alert: archlinux-2022.09.03-x86_64.iso storage move failed. file_rename (/downloads/archlinux-2022.09.03-x86_64.iso): Not supported ``` the `file_rename` operation is wrong, it's the `copy_file()` that's failing. Any chance you could...

my theory is that NFS fails with `ENOTSUP` when calling `copy_file_range()`. This case is currently not handled by falling back on a traditional read-write loop to copy the bytes. The...

Thanks for testing! this means it's the `SEEK_DATA` and `SEEK_HOLE` that isn't supported. stay tuned for an updated patch

I've updated the patch: https://github.com/arvidn/libtorrent/pull/7077

@Aleksman4o can you share which filesystem you use? it's odd that `lseek()` would return `ENODEV`. The linux man page does not document that as a possible failure. I could add...

could you test this? https://github.com/arvidn/libtorrent/pull/7109

I'm relying on google translate, suggesting "No such device or address" is `ENODEV`. Is there any chance you can tell me which errno value that message corresponds to on your...