Commit 61f91059 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Add header field to object


git-svn-id: http://www.varnish-cache.org/svn/trunk@193 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 76a6068e
......@@ -34,6 +34,8 @@ struct object {
unsigned busy;
unsigned len;
char *header;
TAILQ_HEAD(, storage) store;
};
......
......@@ -422,6 +422,8 @@ vcl_output_lang_h(FILE *f)
fputs(" unsigned busy;\n", f);
fputs(" unsigned len;\n", f);
fputs("\n", f);
fputs(" char *header;\n", f);
fputs("\n", f);
fputs(" TAILQ_HEAD(, storage) store;\n", f);
fputs("};\n", f);
fputs("\n", f);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment