aboutsummaryrefslogtreecommitdiffstats
path: root/src/libutil/http.h
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2015-05-08 13:12:02 +0100
committerVsevolod Stakhov <vsevolod@highsecure.ru>2015-05-08 13:12:02 +0100
commit5d9c842644a15f720c2f653f1b825eca958f00b2 (patch)
treeaa2eb7245b4213dd4cfe789f8cbada2066f21d51 /src/libutil/http.h
parent075c2d3608e5e8be18ac4721b371a92e33f63252 (diff)
downloadrspamd-5d9c842644a15f720c2f653f1b825eca958f00b2.tar.gz
rspamd-5d9c842644a15f720c2f653f1b825eca958f00b2.zip
Rework HTTP headers to avoid copying.
Diffstat (limited to 'src/libutil/http.h')
-rw-r--r--src/libutil/http.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libutil/http.h b/src/libutil/http.h
index 41e3bb2bd..e709e1e09 100644
--- a/src/libutil/http.h
+++ b/src/libutil/http.h
@@ -46,6 +46,7 @@ enum rspamd_http_connection_type {
struct rspamd_http_header {
GString *name;
GString *value;
+ GString *combined;
struct rspamd_http_header *next, *prev;
};