mirror of https://github.com/aria2/aria2
2009-09-20 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Removed Retry-After header support. Since the current architecture doesn't allow sleep for particular URI. * src/HttpSkipResponseCommand.ccpull/1/head
parent
45090adb07
commit
e8bda3f593
|
@ -1,3 +1,9 @@
|
|||
2009-09-20 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||
|
||||
Removed Retry-After header support. Since the current architecture
|
||||
doesn't allow sleep for particular URI.
|
||||
* src/HttpSkipResponseCommand.cc
|
||||
|
||||
2009-09-19 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||
|
||||
Updated the help message for --daemon option.
|
||||
|
|
|
@ -157,8 +157,6 @@ bool HttpSkipResponseCommand::processResponse()
|
|||
}
|
||||
_httpResponse->processRedirect();
|
||||
return prepareForRetry(0);
|
||||
} else if(_httpResponse->hasRetryAfter()) {
|
||||
return prepareForRetry(_httpResponse->getRetryAfter());
|
||||
} else if(_httpResponse->getResponseStatus() >= HttpHeader::S400) {
|
||||
if(_httpResponse->getResponseStatus() == HttpHeader::S401) {
|
||||
if(getOption()->getAsBool(PREF_HTTP_AUTH_CHALLENGE) &&
|
||||
|
|
Loading…
Reference in New Issue