comparison Core/HttpServer/FilesystemHttpHandler.h @ 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 f3672356c121
children 3232f1c995a5
comparison
equal deleted inserted replaced
1445:d26c8a93d05a 1446:8dc80ba768aa
56 HttpOutput& output, 56 HttpOutput& output,
57 HttpMethod method, 57 HttpMethod method,
58 const UriComponents& uri, 58 const UriComponents& uri,
59 const Arguments& headers, 59 const Arguments& headers,
60 const GetArguments& arguments, 60 const GetArguments& arguments,
61 const std::string&); 61 const char* /*bodyData*/,
62 size_t /*bodySize*/);
62 63
63 bool IsListDirectoryContent() const 64 bool IsListDirectoryContent() const
64 { 65 {
65 return listDirectoryContent_; 66 return listDirectoryContent_;
66 } 67 }