* HTTP.{cpp,h} : add HTTPMsg::{add,del}_header() helpers

This commit is contained in:
hagen 2016-05-24 00:00:00 +00:00
parent 50ff0d251a
commit a461f462d2
2 changed files with 18 additions and 0 deletions

3
HTTP.h
View file

@ -56,6 +56,9 @@ namespace http {
struct HTTPMsg {
std::map<std::string, std::string> headers;
void add_header(const char *name, const char *value, bool replace = false);
void del_header(const char *name);
};
struct HTTPReq : HTTPMsg {