- 25 Feb, 2017 9 commits
-
-
Poul-Henning Kamp authored
can stabilize test c00080.
-
Poul-Henning Kamp authored
-
Poul-Henning Kamp authored
-
Poul-Henning Kamp authored
-
Poul-Henning Kamp authored
-
Poul-Henning Kamp authored
-
Poul-Henning Kamp authored
-
Poul-Henning Kamp authored
-
Federico G. Schwindt authored
-
- 24 Feb, 2017 2 commits
-
-
Dridi Boukelmoune authored
-
Dridi Boukelmoune authored
Not doing anything for the -C case, since even FREE_OBJ was omitted. Do we care since varnishd immediately exits once -C is done? Refs #2232
-
- 23 Feb, 2017 15 commits
-
-
Nils Goroll authored
When postponing, - re-create the Expect header for pipe mode - For synth content, close the connection by default, but allow VCL to veto this behavior Prevent drain-reading the body if the connection is closed anyway Respect Connection: close from vcl_synth
-
Nils Goroll authored
- when we already started reading the body - for HTTP Versions less than 1.1
-
Nils Goroll authored
whichever comes first
-
Nils Goroll authored
Also log such resposenses
-
Dridi Boukelmoune authored
A case probably overlooked in d306f91c and something that needs some pondering.
-
Dridi Boukelmoune authored
-
Dridi Boukelmoune authored
-
Dridi Boukelmoune authored
-
Dridi Boukelmoune authored
It begs a question: why didn't it fail?
-
Poul-Henning Kamp authored
Fixes #2203
-
Dridi Boukelmoune authored
-
Dridi Boukelmoune authored
-
Dridi Boukelmoune authored
-
Dridi Boukelmoune authored
It shares a lot of parsing infrastructure with log records, but doesn't support the taglist syntax. Only a verbatim `vxid` token can be used as the LHS, and only integer operators are supported.
-
Poul-Henning Kamp authored
-
- 22 Feb, 2017 3 commits
-
-
Dridi Boukelmoune authored
-
Poul-Henning Kamp authored
sub vcl_backend_response { return (pass(2s)); }
-
Poul-Henning Kamp authored
-
- 21 Feb, 2017 11 commits
-
-
Poul-Henning Kamp authored
-
Dridi Boukelmoune authored
-
Geoff Simmons authored
-
Dridi Boukelmoune authored
-
Dridi Boukelmoune authored
It uses `explicit_bzero` when available and falls back to `memset` otherwise.
-
Dridi Boukelmoune authored
New semantic patch, follow-up to 6db7d750: @@ expression fd; @@ closefd(&fd); -fd = -1; Spotted by phk.
-
Dridi Boukelmoune authored
-
Dridi Boukelmoune authored
-
Dridi Boukelmoune authored
Introduced in 7c9916a6, its precise syntax got lost in polishing.
-
Dridi Boukelmoune authored
This patch was created using Coccinelle and the following steps: $ cat >closefd.cocci <<EOF @@ expression fd; @@ - AZ(close(fd)); + closefd(&fd); EOF $ spatch --dir . --in-place --sp-file closefd.cocci Please note that one use of AZ(close(...)) couldn't be moved to closefd() because of a const qualifier. There are other calls to close(2) that are currently not checked on purpose. They may need to be revisited. See: git grep -F '(void)close'
-
Dridi Boukelmoune authored
Originally from #2145
-