mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 14:07:37 +03:00
Rewritten DownloadHandlerConstants
DownloadHandlerConstants was simplified. MIME type handling in Accept header was also reworked. DownloadContext's metalinkServerContacted_ is replaced with acceptMetalink_ and its boolean value is reverted. RequestGroup and HttpRequest now do not hold vector of accepting types. HttpRequest has the flag acceptMetalink_ which will be set by the same value of DownloadContext::accpetMetalink_ and if it is true, Metalink MIME types are added to Accept header field.
This commit is contained in:
parent
9d294741fd
commit
461a542c5e
21 changed files with 118 additions and 196 deletions
|
@ -197,9 +197,9 @@ bool HttpResponseCommand::executeInternal()
|
|||
}
|
||||
if(!getPieceStorage()) {
|
||||
// Metalink/HTTP
|
||||
if(!getDownloadContext()->getMetalinkServerContacted()) {
|
||||
if(getDownloadContext()->getAcceptMetalink()) {
|
||||
if(httpHeader->defined(HttpHeader::LINK)) {
|
||||
getDownloadContext()->setMetalinkServerContacted(true);
|
||||
getDownloadContext()->setAcceptMetalink(false);
|
||||
std::vector<MetalinkHttpEntry> entries;
|
||||
httpResponse->getMetalinKHttpEntries(entries, getOption());
|
||||
for(std::vector<MetalinkHttpEntry>::iterator i = entries.begin(),
|
||||
|
@ -245,7 +245,7 @@ bool HttpResponseCommand::executeInternal()
|
|||
}
|
||||
}
|
||||
if(!getPieceStorage()) {
|
||||
util::removeMetalinkContentTypes(getRequestGroup());
|
||||
getDownloadContext()->setAcceptMetalink(false);
|
||||
int64_t totalLength = httpResponse->getEntityLength();
|
||||
getFileEntry()->setLength(totalLength);
|
||||
if(getFileEntry()->getPath().empty()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue