* HTTP.h : export MergeChunkedResponse()

This commit is contained in:
hagen 2016-05-26 00:00:00 +00:00
parent 43a90d7b98
commit f245feb0b0

8
HTTP.h
View File

@ -132,6 +132,14 @@ namespace http {
* @return Decoded string
*/
std::string UrlDecode(const std::string& data, bool null = false);
/**
* @brief Merge HTTP response content with Transfer-Encoding: chunked
* @param in Input stream
* @param out Output stream
* @return true on success, false otherwise
*/
bool MergeChunkedResponse (std::istream& in, std::ostream& out);
} // http
} // i2p