#define BF_STREAMER 4096
#define BF_STREAMER_FAST 8192
-#define BF_MAY_CONNECT 16384 /* consumer side is allowed to forward the connection */
-#define BF_MAY_FORWARD 32768 /* consumer side is allowed to forward the data */
-#define BF_READ_TIMEOUT 65536 /* timeout while waiting for producer */
-#define BF_WRITE_TIMEOUT 131072 /* timeout while waiting for consumer */
+#define BF_MAY_FORWARD 16384 /* consumer side is allowed to forward the data */
+#define BF_READ_TIMEOUT 32768 /* timeout while waiting for producer */
+#define BF_WRITE_TIMEOUT 65536 /* timeout while waiting for consumer */
/* describes a chunk of string */
struct chunk {
s->req->rlim -= MAXREWRITE;
if (!(s->analysis & AN_REQ_ANY))
- s->req->flags |= BF_MAY_CONNECT; /* don't wait to establish connection */
+ s->req->flags |= BF_MAY_FORWARD; /* don't wait to establish connection */
s->req->rto = s->fe->timeout.client;
s->req->wto = s->be->timeout.server;
req->l, rep->l);
/* if no analysis remains, it's time to forward the connection */
- if (!(t->analysis & AN_REQ_ANY) && !(req->flags & (BF_MAY_CONNECT|BF_MAY_FORWARD)))
- req->flags |= BF_MAY_CONNECT | BF_MAY_FORWARD;
+ if (!(t->analysis & AN_REQ_ANY) && !(req->flags & BF_MAY_FORWARD))
+ req->flags |= BF_MAY_FORWARD;
/* FIXME: we still have to check for CL_STSHUTR because client_retnclose
* still set this state (and will do until unix sockets are converted).
trace_term(t, TT_HTTP_SRV_1);
return 1;
}
- else if (req->flags & BF_MAY_CONNECT) {
+ else if (req->flags & BF_MAY_FORWARD) {
/* the client allows the server to connect */
if (txn->flags & TX_CLTARPIT) {
/* This connection is being tarpitted. The CLIENT side has