mirror of https://github.com/aria2/aria2
Removed redundant call of util::isNumericHost().
parent
74e5aa0ace
commit
3837be82c8
|
@ -625,13 +625,10 @@ bool inNoProxy(const SharedHandle<Request>& req,
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if(!util::isNumericHost(req->getHost())) {
|
|
||||||
// TODO We don't resolve hostname here. More complete
|
// TODO We don't resolve hostname here. More complete
|
||||||
// implementation is that we should first resolve
|
// implementation is that we should first resolve
|
||||||
// hostname(which may result in several IP addresses) and
|
// hostname(which may result in several IP addresses) and
|
||||||
// evaluates against all of them
|
// evaluates against all of them
|
||||||
continue;
|
|
||||||
}
|
|
||||||
std::string ip = (*i).substr(0, slashpos);
|
std::string ip = (*i).substr(0, slashpos);
|
||||||
uint32_t bits;
|
uint32_t bits;
|
||||||
if(!util::parseUIntNoThrow(bits, (*i).substr(slashpos+1))) {
|
if(!util::parseUIntNoThrow(bits, (*i).substr(slashpos+1))) {
|
||||||
|
|
Loading…
Reference in New Issue