comparison Core/HttpServer/FilesystemHttpHandler.cpp @ 1446:8dc80ba768aa

refactoring: IHttpHandler does not use std::string to hold the request body
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 01 Jul 2015 13:16:12 +0200
parents feaf2840917c
children c94353fbd4e9
comparison
equal deleted inserted replaced
1445:d26c8a93d05a 1446:8dc80ba768aa
128 HttpOutput& output, 128 HttpOutput& output,
129 HttpMethod method, 129 HttpMethod method,
130 const UriComponents& uri, 130 const UriComponents& uri,
131 const Arguments& headers, 131 const Arguments& headers,
132 const GetArguments& arguments, 132 const GetArguments& arguments,
133 const std::string&) 133 const char* /*bodyData*/,
134 size_t /*bodySize*/)
134 { 135 {
135 if (!Toolbox::IsChildUri(pimpl_->baseUri_, uri)) 136 if (!Toolbox::IsChildUri(pimpl_->baseUri_, uri))
136 { 137 {
137 // This URI is not served by this handler 138 // This URI is not served by this handler
138 return false; 139 return false;