MINOR: connection: add cs_set_error() to set the error bits
Depending on the CS_FL_EOS status, we either set CS_FL_ERR_PENDING
or CS_FL_ERROR at various places. Let's have a generic function to
do this.
diff --git a/include/proto/connection.h b/include/proto/connection.h
index a7b596a..f674658 100644
--- a/include/proto/connection.h
+++ b/include/proto/connection.h
@@ -501,6 +501,15 @@
cs->flags = CS_FL_NONE;
}
+/* sets CS_FL_ERROR or CS_FL_ERR_PENDING on the cs */
+static inline void cs_set_error(struct conn_stream *cs)
+{
+ if (cs->flags & CS_FL_EOS)
+ cs->flags |= CS_FL_ERROR;
+ else
+ cs->flags |= CS_FL_REOS | CS_FL_ERR_PENDING;
+}
+
/* detect sock->data read0 transition */
static inline int conn_xprt_read0_pending(struct connection *c)
{