Beispiel #1
0
void HttpDownload::checkFilesWithHash()
{
    thread = new FileValidationThread();
    thread->setData(installationPath, &fileList, &fileListMD5, &fileListSize);

    connect(thread, SIGNAL(finished()),SLOT(slot_verificationDone()));

    thread->start();
}
Beispiel #2
0
void HttpDownload::checkFilesWithHash()
{
    Logging::addEntry(LOG_LEVEL_INF, "Checking file hash in new thread", FUNCTION_NAME);

    thread = new FileValidationThread();
    thread->setData(installationPath, &fileList, &fileListMD5, &fileListSize);

    connect(thread, SIGNAL(finished()),SLOT(slot_verificationDone()));

    thread->start();
}