mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 14:07:37 +03:00
2009-07-15 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Added 'errorCode' to the reponse of tellStatus xml-rpc method. This key is only available for stopped/completed downloads and its value is the error code defined in EXIT STATUS in man page. * src/XmlRpcMethodImpl.cc
This commit is contained in:
parent
de23f72818
commit
d17d7631e1
2 changed files with 8 additions and 0 deletions
|
@ -345,6 +345,7 @@ static void gatherStoppedDownload
|
|||
(BDE& entryDict, const SharedHandle<DownloadResult>& ds)
|
||||
{
|
||||
entryDict["gid"] = Util::itos(ds->gid);
|
||||
entryDict["errorCode"] = Util::itos(static_cast<int>(ds->result));
|
||||
if(ds->result == downloadresultcode::IN_PROGRESS) {
|
||||
entryDict["status"] = BDE_REMOVED;
|
||||
} else if(ds->result == downloadresultcode::FINISHED) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue