Commit 83621857 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Don't filter headers in Pipe mode


git-svn-id: http://www.varnish-cache.org/svn/trunk@370 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent b2cb67be
......@@ -478,6 +478,13 @@ http_BuildSbuf(int fd, enum http_build mode, struct sbuf *sb, struct http *hp)
sup = 2;
break;
case Build_Pipe:
sbuf_cat(sb, hp->req);
sbuf_cat(sb, " ");
sbuf_cat(sb, hp->url);
sbuf_cat(sb, " ");
sbuf_cat(sb, hp->proto);
sup = 0;
break;
case Build_Pass:
sbuf_cat(sb, hp->req);
sbuf_cat(sb, " ");
......
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