MINOR: stconn/channel: Move CF_READ_DONTWAIT into the SC and rename it
The channel flag CF_READ_DONTWAIT is renamed to SC_FL_RCV_ONCE and moved
into the stream-connector.
diff --git a/src/frontend.c b/src/frontend.c
index 7b71357..33d66df 100644
--- a/src/frontend.c
+++ b/src/frontend.c
@@ -138,7 +138,7 @@
}
if (fe->mode == PR_MODE_HTTP)
- s->req.flags |= CF_READ_DONTWAIT; /* one read is usually enough */
+ s->scf->flags |= SC_FL_RCV_ONCE; /* one read is usually enough */
if (unlikely(fe->nb_req_cap > 0)) {
if ((s->req_cap = pool_zalloc(fe->req_cap_pool)) == NULL)