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;
|
||||
}
|
||||
} else {
|
||||
if(!util::isNumericHost(req->getHost())) {
|
||||
// TODO We don't resolve hostname here. More complete
|
||||
// implementation is that we should first resolve
|
||||
// hostname(which may result in several IP addresses) and
|
||||
// evaluates against all of them
|
||||
continue;
|
||||
}
|
||||
// TODO We don't resolve hostname here. More complete
|
||||
// implementation is that we should first resolve
|
||||
// hostname(which may result in several IP addresses) and
|
||||
// evaluates against all of them
|
||||
std::string ip = (*i).substr(0, slashpos);
|
||||
uint32_t bits;
|
||||
if(!util::parseUIntNoThrow(bits, (*i).substr(slashpos+1))) {
|
||||
|
|
Loading…
Reference in New Issue