How do I check status of my download? 22004-02-01 04:27:56
Once CTorrent starts to download, all you will see is 1 line of status. It's kind of hard to interpret what all the numbers mean, so here's an example:

10, [0/334/331], 6070,9845, | 5004,3984 E:3
10 - Number of connected peers (other people who have the file you are downloading)
0/334/331 - Downloaded/Total/Available pieces of the file. All pieces may not be availabe at all times since peers go offline.
6070,9845 - Average downloadspeed (in bytes/s), Average uploadspeed (in bytes/s)
5004,3984 - Current downloadspeed (in bytes/s), Current uploadspeed (in bytes/s)
E:3 - The tracker has refused connections 3 times.


This patch adds the following information to the status line:

- <1>/<2>/<3> [<4>/<5>/<6>] <7>MB,<8>MB | <9>,<10> | <11>,<12> E:<13>,<14>
<1> = number of seeders connected
<2> = number of leachers connected
<3> = total number of peers reported by the tracker

<4> = number of pieces already downloaded
<5> = total number of pieces in the torrent
<6> = total number of pieces available in the swarm

<7> = number of MB downloaded
<8> = number of MB uploaded

<9> = download rate
<10> = upload rate

<11> = bytes downloaded since last status update
<12> = bytes uploaded since last status update

<13> = number of tracker errors
<14> = number of successful tracker updates