comparison Core/HttpServer/IHttpHandler.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 4ff8dd753d79
children c94353fbd4e9
comparison
equal deleted inserted replaced
1445:d26c8a93d05a 1446:8dc80ba768aa
54 virtual bool Handle(HttpOutput& output, 54 virtual bool Handle(HttpOutput& output,
55 HttpMethod method, 55 HttpMethod method,
56 const UriComponents& uri, 56 const UriComponents& uri,
57 const Arguments& headers, 57 const Arguments& headers,
58 const GetArguments& getArguments, 58 const GetArguments& getArguments,
59 const std::string& body) = 0; 59 const char* bodyData,
60 size_t bodySize) = 0;
60 }; 61 };
61 } 62 }