mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Use uri_split instead of uri::parse where appropriate
This commit is contained in:
parent
eebc704b19
commit
c904aa50fe
11 changed files with 85 additions and 54 deletions
|
@ -239,9 +239,11 @@ bool HttpResponseCommand::executeInternal()
|
|||
if(getFileEntry()->isUniqueProtocol()) {
|
||||
// Redirection should be considered here. We need to parse
|
||||
// original URI to get hostname.
|
||||
uri::UriStruct us;
|
||||
if(uri::parse(us, getRequest()->getUri())) {
|
||||
getFileEntry()->removeURIWhoseHostnameIs(us.host);
|
||||
const std::string& uri = getRequest()->getUri();
|
||||
uri_split_result us;
|
||||
if(uri_split(&us, uri.c_str()) == 0) {
|
||||
std::string host = uri::getFieldString(us, USR_HOST, uri.c_str());
|
||||
getFileEntry()->removeURIWhoseHostnameIs(host);
|
||||
}
|
||||
}
|
||||
if(!getPieceStorage()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue