1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-22 15:54:57 +00:00
transmission/docs/Can-I-sequence-the-files-I-download.md
maxz 7c76d40a4d
Improve the documentation (#2900)
* Unify the line endings to the Unix style (LF only).

* Fix (where possible) or remove broken links.

* Improve the documentation.

Fix or remove broken links (depending on whether I could find a
working version of the resource).

Change all links to use HTTPS instead of HTTP.

Unify the capitalizations (e.g. uppercase abbreviations, capitalize
proper names and downcase other words).

Fix or improve some parts of the text, clarifying what is meant.

Improve some parts of the program examples (e.g. only use root
privileges where really required).
2022-04-11 12:38:32 -05:00

841 B

Can I sequence the files I download? This is quite a common question. This entry will try to answer it and offer solutions.

Why is this "feature" not implemented in Transmission?

Because it makes the overall swarm's health worse.

But I want to sequence the files I download, how do I do it?

There are basically two methods, one DIY method that requires some code modification and the "user friendly" version.

  1. DIY code changing approach: Tweak compareRefillPiece() in libtransmission/peer-mgr.c Replace:

    /* otherwise go with our random seed */
    return tr_compareUint16( a->random, b->random );
    

    With:

    /* otherwise download the pieces in order */
    return tr_compareUint16( a->piece, b->piece );
    
  2. "User-friendly" approach: In the file inspector, change the priorities "by hand".