mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 05:27:38 +03:00
Fix compile error
This commit is contained in:
parent
da7400ef5c
commit
0b1e05b13b
3 changed files with 3 additions and 3 deletions
|
@ -41,7 +41,7 @@
|
||||||
#include <aria2/aria2.h>
|
#include <aria2/aria2.h>
|
||||||
|
|
||||||
int downloadEventCallback(aria2::Session* session, aria2::DownloadEvent event,
|
int downloadEventCallback(aria2::Session* session, aria2::DownloadEvent event,
|
||||||
const aria2::A2Gid& gid, void* userData)
|
aria2::A2Gid gid, void* userData)
|
||||||
{
|
{
|
||||||
switch(event) {
|
switch(event) {
|
||||||
case aria2::EVENT_ON_DOWNLOAD_COMPLETE:
|
case aria2::EVENT_ON_DOWNLOAD_COMPLETE:
|
||||||
|
|
|
@ -52,7 +52,7 @@ bool KeepRunningCommand::execute()
|
||||||
if(e_->isHaltRequested()) {
|
if(e_->isHaltRequested()) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
e_->addCommand(this);
|
e_->addCommand(std::unique_ptr<Command>(this));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -128,7 +128,7 @@ Session* sessionNew(const KeyVals& options, const SessionConfig& config)
|
||||||
if(config.keepRunning) {
|
if(config.keepRunning) {
|
||||||
e->getRequestGroupMan()->setKeepRunning(true);
|
e->getRequestGroupMan()->setKeepRunning(true);
|
||||||
// Add command to make aria2 keep event polling
|
// Add command to make aria2 keep event polling
|
||||||
e->addCommand(new KeepRunningCommand(e->newCUID(), e.get()));
|
e->addCommand(make_unique<KeepRunningCommand>(e->newCUID(), e.get()));
|
||||||
}
|
}
|
||||||
if(config.downloadEventCallback) {
|
if(config.downloadEventCallback) {
|
||||||
std::shared_ptr<DownloadEventListener> listener
|
std::shared_ptr<DownloadEventListener> listener
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue