add persistence to download queue

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1510 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
alexandrut 2009-08-10 19:01:27 +00:00
parent a808ab9173
commit 339fcd53ed
6 changed files with 331 additions and 36 deletions

View file

@ -523,6 +523,12 @@ bool ftController::activate()
return true;
}
bool ftController::isActiveAndNoPending()
{
RsStackMutex stack(ctrlMutex); /******* LOCKED ********/
return (mFtActive && mFtPendingDone);
}
bool ftController::handleAPendingRequest()
{
ftPendingRequest req;