[BUG] tcp: dropped connections must be counted as "denied" not "failed"
This probably was a copy-paste typo from the initial tcp-request feature.
This must be backported to 1.4 and possibly 1.3.
diff --git a/src/proto_tcp.c b/src/proto_tcp.c
index 7c958fc..96bdebc 100644
--- a/src/proto_tcp.c
+++ b/src/proto_tcp.c
@@ -692,9 +692,9 @@
buffer_abort(s->rep);
req->analysers = 0;
- s->fe->counters.failed_req++;
+ s->fe->counters.denied_req++;
if (s->listener->counters)
- s->listener->counters->failed_req++;
+ s->listener->counters->denied_req++;
if (!(s->flags & SN_ERR_MASK))
s->flags |= SN_ERR_PRXCOND;