Use uri_split instead of uri::parse where appropriate

This commit is contained in:
Tatsuhiro Tsujikawa 2012-10-14 18:05:34 +09:00
parent eebc704b19
commit c904aa50fe
11 changed files with 85 additions and 54 deletions

View file

@ -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()) {