we must not close on remote shutdown but on remote error only.
struct http_txn *txn = &s->txn;
struct http_msg *msg = &s->txn.req;
- if (req->flags & (BF_SHUTW|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) {
+ if (req->flags & (BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) {
req->analysers &= ~an_bit;
return 1;
}
struct http_txn *txn = &s->txn;
struct http_msg *msg = &s->txn.rsp;
- if (res->flags & (BF_SHUTW|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) {
+ if (res->flags & (BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) {
res->analysers &= ~an_bit;
return 1;
}