+ HTTP.{cpp,h} : add HTTPRes::is_gzipped()

This commit is contained in:
hagen 2016-07-14 00:00:00 +00:00
parent 728f2670f3
commit c4721e1020
2 changed files with 15 additions and 0 deletions

3
HTTP.h
View file

@ -118,6 +118,9 @@ namespace http {
/** @brief Checks that response declared as chunked data */
bool is_chunked();
/** @brief Checks that response contains compressed data */
bool is_gzipped();
};
/**