summaryrefslogtreecommitdiff
path: root/src/modules/httpd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/httpd.h')
-rw-r--r--src/modules/httpd.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/modules/httpd.h b/src/modules/httpd.h
index 5ac4d0c85..ba059dca8 100644
--- a/src/modules/httpd.h
+++ b/src/modules/httpd.h
@@ -50,12 +50,13 @@ class HTTPDocument : public classbase
protected:
std::stringstream* document;
int responsecode;
+ std::string extraheaders;
public:
void* sock;
- HTTPDocument(void* opaque, std::stringstream* doc, int response) : document(doc), responsecode(response), sock(opaque)
+ HTTPDocument(void* opaque, std::stringstream* doc, int response, const std::string &extra) : document(doc), responsecode(response), extraheaders(extra), sock(opaque)
{
}
@@ -73,6 +74,11 @@ class HTTPDocument : public classbase
{
return this->responsecode;
}
+
+ std::string& GetExtraHeaders()
+ {
+ return this->extraheaders;
+ }
};
#endif