solved issue with pausing checking torrents. Introduced a new state, checkin_resume_data, which a torrent is in while waiting for the disk io thread to verify the resume data, but before it has been determined wheter it should be queued for checking or not

This commit is contained in:
Arvid Norberg
2008-11-19 00:46:48 +00:00
parent 78abf8a340
commit 723aba6c24
7 changed files with 79 additions and 22 deletions

View File

@@ -667,7 +667,7 @@ void handle_alert(libtorrent::session& ses, libtorrent::alert* a
static char const* state_str[] =
{"checking (q)", "checking", "dl metadata"
, "downloading", "finished", "seeding", "allocating"};
, "downloading", "finished", "seeding", "allocating", "checking (r)"};
int main(int ac, char* av[])
{