CLEANUP: stconn: rename cs_conn_*() to sc_conn_*()

The following functions which act on a connection-based stream connector
were renamed to sc_conn_* (~60 places):

  cs_conn_drain_and_shut
  cs_conn_process
  cs_conn_read0
  cs_conn_ready
  cs_conn_recv
  cs_conn_send
  cs_conn_shut
  cs_conn_shutr
  cs_conn_shutw
diff --git a/include/haproxy/conn_stream.h b/include/haproxy/conn_stream.h
index 5e22fe7..112b27e 100644
--- a/include/haproxy/conn_stream.h
+++ b/include/haproxy/conn_stream.h
@@ -227,7 +227,7 @@
 }
 
 /* shut read */
-static inline void cs_conn_shutr(struct stconn *cs, enum co_shr_mode mode)
+static inline void sc_conn_shutr(struct stconn *cs, enum co_shr_mode mode)
 {
 	const struct mux_ops *mux;
 
@@ -244,7 +244,7 @@
 }
 
 /* shut write */
-static inline void cs_conn_shutw(struct stconn *cs, enum co_shw_mode mode)
+static inline void sc_conn_shutw(struct stconn *cs, enum co_shw_mode mode)
 {
 	const struct mux_ops *mux;
 
@@ -261,17 +261,17 @@
 }
 
 /* completely close a stream connector (but do not detach it) */
-static inline void cs_conn_shut(struct stconn *cs)
+static inline void sc_conn_shut(struct stconn *cs)
 {
-	cs_conn_shutw(cs, CO_SHW_SILENT);
-	cs_conn_shutr(cs, CO_SHR_RESET);
+	sc_conn_shutw(cs, CO_SHW_SILENT);
+	sc_conn_shutr(cs, CO_SHR_RESET);
 }
 
 /* completely close a stream connector after draining possibly pending data (but do not detach it) */
-static inline void cs_conn_drain_and_shut(struct stconn *cs)
+static inline void sc_conn_drain_and_shut(struct stconn *cs)
 {
-	cs_conn_shutw(cs, CO_SHW_SILENT);
-	cs_conn_shutr(cs, CO_SHR_DRAIN);
+	sc_conn_shutw(cs, CO_SHW_SILENT);
+	sc_conn_shutr(cs, CO_SHR_DRAIN);
 }
 
 /* sets SE_FL_ERROR or SE_FL_ERR_PENDING on the endpoint */
diff --git a/include/haproxy/cs_utils.h b/include/haproxy/cs_utils.h
index b263985..1add209 100644
--- a/include/haproxy/cs_utils.h
+++ b/include/haproxy/cs_utils.h
@@ -36,9 +36,9 @@
 void cs_update_rx(struct stconn *cs);
 void cs_update_tx(struct stconn *cs);
 
-struct task *cs_conn_io_cb(struct task *t, void *ctx, unsigned int state);
-int cs_conn_sync_recv(struct stconn *cs);
-void cs_conn_sync_send(struct stconn *cs);
+struct task *sc_conn_io_cb(struct task *t, void *ctx, unsigned int state);
+int sc_conn_sync_recv(struct stconn *cs);
+void sc_conn_sync_send(struct stconn *cs);
 
 
 /* returns the channel which receives data from this stream connector (input channel) */
@@ -120,7 +120,7 @@
 /* Returns true if a connection is attached to the stream connector <cs> and if this
  * connection is ready.
  */
-static inline int cs_conn_ready(struct stconn *cs)
+static inline int sc_conn_ready(struct stconn *cs)
 {
 	struct connection *conn = sc_conn(cs);
 
diff --git a/src/check.c b/src/check.c
index 20ed5b4..438e4b3 100644
--- a/src/check.c
+++ b/src/check.c
@@ -1176,7 +1176,7 @@
 		 * as a failed response coupled with "observe layer7" caused the
 		 * server state to be suddenly changed.
 		 */
-		cs_conn_drain_and_shut(cs);
+		sc_conn_drain_and_shut(cs);
 	}
 
 	if (cs) {
diff --git a/src/cli.c b/src/cli.c
index b91b392..e684620 100644
--- a/src/cli.c
+++ b/src/cli.c
@@ -2766,7 +2766,7 @@
 		/* only release our endpoint if we don't intend to reuse the
 		 * connection.
 		 */
-		if (!cs_conn_ready(s->scb)) {
+		if (!sc_conn_ready(s->scb)) {
 			s->srv_conn = NULL;
 			if (cs_reset_endp(s->scb) < 0) {
 				if (!s->conn_err_type)
diff --git a/src/conn_stream.c b/src/conn_stream.c
index 37f7284..9ad5258 100644
--- a/src/conn_stream.c
+++ b/src/conn_stream.c
@@ -41,9 +41,9 @@
 static void sc_app_chk_rcv_applet(struct stconn *cs);
 static void sc_app_chk_snd_applet(struct stconn *cs);
 
-static int cs_conn_process(struct stconn *cs);
-static int cs_conn_recv(struct stconn *cs);
-static int cs_conn_send(struct stconn *cs);
+static int sc_conn_process(struct stconn *cs);
+static int sc_conn_recv(struct stconn *cs);
+static int sc_conn_send(struct stconn *cs);
 static int cs_applet_process(struct stconn *cs);
 
 /* stream connector operations for connections */
@@ -52,7 +52,7 @@
 	.chk_snd = sc_app_chk_snd_conn,
 	.shutr   = sc_app_shutr_conn,
 	.shutw   = sc_app_shutw_conn,
-	.wake    = cs_conn_process,
+	.wake    = sc_conn_process,
 	.name    = "STRM",
 };
 
@@ -263,7 +263,7 @@
 			cs->wait_event.tasklet = tasklet_new();
 			if (!cs->wait_event.tasklet)
 				return -1;
-			cs->wait_event.tasklet->process = cs_conn_io_cb;
+			cs->wait_event.tasklet->process = sc_conn_io_cb;
 			cs->wait_event.tasklet->context = cs;
 			cs->wait_event.events = 0;
 		}
@@ -312,7 +312,7 @@
 		cs->wait_event.tasklet = tasklet_new();
 		if (!cs->wait_event.tasklet)
 			return -1;
-		cs->wait_event.tasklet->process = cs_conn_io_cb;
+		cs->wait_event.tasklet->process = sc_conn_io_cb;
 		cs->wait_event.tasklet->context = cs;
 		cs->wait_event.events = 0;
 
@@ -661,7 +661,7 @@
 		return;
 
 	if (sc_oc(cs)->flags & CF_SHUTW) {
-		cs_conn_shut(cs);
+		sc_conn_shut(cs);
 		cs->state = SC_ST_DIS;
 		__sc_strm(cs)->conn_exp = TICK_ETERNITY;
 	}
@@ -717,7 +717,7 @@
 			 * option abortonclose. No need for the TLS layer to try to
 			 * emit a shutdown message.
 			 */
-			cs_conn_shutw(cs, CO_SHW_SILENT);
+			sc_conn_shutw(cs, CO_SHW_SILENT);
 		}
 		else {
 			/* clean data-layer shutdown. This only happens on the
@@ -726,7 +726,7 @@
 			 * while option abortonclose is set. We want the TLS
 			 * layer to try to signal it to the peer before we close.
 			 */
-			cs_conn_shutw(cs, CO_SHW_NORMAL);
+			sc_conn_shutw(cs, CO_SHW_NORMAL);
 
 			if (!(ic->flags & (CF_SHUTR|CF_DONT_READ)))
 				return;
@@ -737,7 +737,7 @@
 		/* we may have to close a pending connection, and mark the
 		 * response buffer as shutr
 		 */
-		cs_conn_shut(cs);
+		sc_conn_shut(cs);
 		/* fall through */
 	case SC_ST_CER:
 	case SC_ST_QUE:
@@ -792,7 +792,7 @@
 		return;
 
 	if (!(cs->wait_event.events & SUB_RETRY_SEND) && !channel_is_empty(sc_oc(cs)))
-		cs_conn_send(cs);
+		sc_conn_send(cs);
 
 	if (sc_ep_test(cs, SE_FL_ERROR | SE_FL_ERR_PENDING) || cs_is_conn_error(cs)) {
 		/* Write error on the file descriptor */
@@ -1237,7 +1237,7 @@
  * It updates the stream connector. If the stream connector has SC_FL_NOHALF,
  * the close is also forwarded to the write side as an abort.
  */
-static void cs_conn_read0(struct stconn *cs)
+static void sc_conn_read0(struct stconn *cs)
 {
 	struct channel *ic = sc_ic(cs);
 	struct channel *oc = sc_oc(cs);
@@ -1259,7 +1259,7 @@
 	if (cs->flags & SC_FL_NOHALF) {
 		/* we want to immediately forward this close to the write side */
 		/* force flag on ssl to keep stream in cache */
-		cs_conn_shutw(cs, CO_SHW_SILENT);
+		sc_conn_shutw(cs, CO_SHW_SILENT);
 		goto do_close;
 	}
 
@@ -1268,7 +1268,7 @@
 
  do_close:
 	/* OK we completely close the socket here just as if we went through cs_shut[rw]() */
-	cs_conn_shut(cs);
+	sc_conn_shut(cs);
 
 	oc->flags &= ~CF_SHUTW_NOW;
 	oc->flags |= CF_SHUTW;
@@ -1286,7 +1286,7 @@
  * into the buffer from the connection. It iterates over the mux layer's
  * rcv_buf function.
  */
-static int cs_conn_recv(struct stconn *cs)
+static int sc_conn_recv(struct stconn *cs)
 {
 	struct connection *conn = __sc_conn(cs);
 	struct channel *ic = sc_ic(cs);
@@ -1298,7 +1298,7 @@
 	if (cs->state != SC_ST_EST)
 		return 0;
 
-	/* If another call to cs_conn_recv() failed, and we subscribed to
+	/* If another call to sc_conn_recv() failed, and we subscribed to
 	 * recv events already, give up now.
 	 */
 	if (cs->wait_event.events & SUB_RETRY_RECV)
@@ -1596,7 +1596,7 @@
 		ic->flags |= CF_READ_NULL;
 		if (ic->flags & CF_AUTO_CLOSE)
 			channel_shutw_now(ic);
-		cs_conn_read0(cs);
+		sc_conn_read0(cs);
 		ret = 1;
 	}
 	else if (!cs_rx_blocked(cs)) {
@@ -1617,7 +1617,7 @@
  * to be programmed and performed later, though it doesn't provide any
  * such guarantee.
  */
-int cs_conn_sync_recv(struct stconn *cs)
+int sc_conn_sync_recv(struct stconn *cs)
 {
 	if (!cs_state_in(cs->state, SC_SB_RDY|SC_SB_EST))
 		return 0;
@@ -1631,7 +1631,7 @@
 	if (!cs_rx_endp_ready(cs) || cs_rx_blocked(cs))
 		return 0; // already failed
 
-	return cs_conn_recv(cs);
+	return sc_conn_recv(cs);
 }
 
 /*
@@ -1640,7 +1640,7 @@
  * caller to commit polling changes. The caller should check conn->flags
  * for errors.
  */
-static int cs_conn_send(struct stconn *cs)
+static int sc_conn_send(struct stconn *cs)
 {
 	struct connection *conn = __sc_conn(cs);
 	struct stream *s = __sc_strm(cs);
@@ -1785,7 +1785,7 @@
  * CF_WRITE_PARTIAL flags are cleared prior to the attempt, and will possibly
  * be updated in case of success.
  */
-void cs_conn_sync_send(struct stconn *cs)
+void sc_conn_sync_send(struct stconn *cs)
 {
 	struct channel *oc = sc_oc(cs);
 
@@ -1803,7 +1803,7 @@
 	if (!sc_mux_ops(cs))
 		return;
 
-	cs_conn_send(cs);
+	sc_conn_send(cs);
 }
 
 /* Called by I/O handlers after completion.. It propagates
@@ -1812,7 +1812,7 @@
  * connection's polling based on the channels and stream connector's final
  * states. The function always returns 0.
  */
-static int cs_conn_process(struct stconn *cs)
+static int sc_conn_process(struct stconn *cs)
 {
 	struct connection *conn = __sc_conn(cs);
 	struct channel *ic = sc_ic(cs);
@@ -1822,7 +1822,7 @@
 
 	/* If we have data to send, try it now */
 	if (!channel_is_empty(oc) && !(cs->wait_event.events & SUB_RETRY_SEND))
-		cs_conn_send(cs);
+		sc_conn_send(cs);
 
 	/* First step, report to the stream connector what was detected at the
 	 * connection layer : errors and connection establishment.
@@ -1832,8 +1832,8 @@
 	 * to retry to connect, the connection may still have CO_FL_ERROR,
 	 * and we don't want to add SE_FL_ERROR back
 	 *
-	 * Note: This test is only required because cs_conn_process is also the SI
-	 *       wake callback. Otherwise cs_conn_recv()/cs_conn_send() already take
+	 * Note: This test is only required because sc_conn_process is also the SI
+	 *       wake callback. Otherwise sc_conn_recv()/sc_conn_send() already take
 	 *       care of it.
 	 */
 
@@ -1864,8 +1864,8 @@
 	/* Report EOS on the channel if it was reached from the mux point of
 	 * view.
 	 *
-	 * Note: This test is only required because cs_conn_process is also the SI
-	 *       wake callback. Otherwise cs_conn_recv()/cs_conn_send() already take
+	 * Note: This test is only required because sc_conn_process is also the SI
+	 *       wake callback. Otherwise sc_conn_recv()/sc_conn_send() already take
 	 *       care of it.
 	 */
 	if (sc_ep_test(cs, SE_FL_EOS) && !(ic->flags & CF_SHUTR)) {
@@ -1873,14 +1873,14 @@
 		ic->flags |= CF_READ_NULL;
 		if (ic->flags & CF_AUTO_CLOSE)
 			channel_shutw_now(ic);
-		cs_conn_read0(cs);
+		sc_conn_read0(cs);
 	}
 
 	/* Report EOI on the channel if it was reached from the mux point of
 	 * view.
 	 *
-	 * Note: This test is only required because cs_conn_process is also the SI
-	 *       wake callback. Otherwise cs_conn_recv()/cs_conn_send() already take
+	 * Note: This test is only required because sc_conn_process is also the SI
+	 *       wake callback. Otherwise sc_conn_recv()/sc_conn_send() already take
 	 *       care of it.
 	 */
 	if (sc_ep_test(cs, SE_FL_EOI) && !(ic->flags & CF_EOI))
@@ -1900,7 +1900,7 @@
  * stream connector. Thus it is always safe to perform a tasklet_wakeup() on a
  * stream connector, as the presence of the CS is checked there.
  */
-struct task *cs_conn_io_cb(struct task *t, void *ctx, unsigned int state)
+struct task *sc_conn_io_cb(struct task *t, void *ctx, unsigned int state)
 {
 	struct stconn *cs = ctx;
 	int ret = 0;
@@ -1909,11 +1909,11 @@
 		return t;
 
 	if (!(cs->wait_event.events & SUB_RETRY_SEND) && !channel_is_empty(sc_oc(cs)))
-		ret = cs_conn_send(cs);
+		ret = sc_conn_send(cs);
 	if (!(cs->wait_event.events & SUB_RETRY_RECV))
-		ret |= cs_conn_recv(cs);
+		ret |= sc_conn_recv(cs);
 	if (ret != 0)
-		cs_conn_process(cs);
+		sc_conn_process(cs);
 
 	stream_release_buffers(__sc_strm(cs));
 	return t;
diff --git a/src/debug.c b/src/debug.c
index 5dcd96e..c6b541d 100644
--- a/src/debug.c
+++ b/src/debug.c
@@ -252,7 +252,7 @@
 		s = (struct stream *)task->context;
 	else if (task->process == task_run_applet && task->context)
 		s = sc_strm(appctx_cs((struct appctx *)task->context));
-	else if (task->process == cs_conn_io_cb && task->context)
+	else if (task->process == sc_conn_io_cb && task->context)
 		s = sc_strm(((struct stconn *)task->context));
 
 	if (s)
diff --git a/src/stream.c b/src/stream.c
index a615c74..c0e49b6 100644
--- a/src/stream.c
+++ b/src/stream.c
@@ -1634,8 +1634,8 @@
 	scb = s->scb;
 
 	/* First, attempt to receive pending data from I/O layers */
-	cs_conn_sync_recv(scf);
-	cs_conn_sync_recv(scb);
+	sc_conn_sync_recv(scf);
+	sc_conn_sync_recv(scb);
 
 	/* Let's check if we're looping without making any progress, e.g. due
 	 * to a bogus analyser or the fact that we're ignoring a read0. The
@@ -2287,7 +2287,7 @@
 	}
 
 	/* Let's see if we can send the pending request now */
-	cs_conn_sync_send(scb);
+	sc_conn_sync_send(scb);
 
 	/*
 	 * Now forward all shutdown requests between both sides of the request buffer
@@ -2416,7 +2416,7 @@
 	rpf_last = res->flags;
 
 	/* Let's see if we can send the pending response now */
-	cs_conn_sync_send(scf);
+	sc_conn_sync_send(scf);
 
 	/*
 	 * Now forward all shutdown requests between both sides of the buffer
diff --git a/src/tools.c b/src/tools.c
index 4ecbdc4..05f4f30 100644
--- a/src/tools.c
+++ b/src/tools.c
@@ -4936,7 +4936,7 @@
 	} fcts[] = {
 		{ .func = process_stream, .name = "process_stream" },
 		{ .func = task_run_applet, .name = "task_run_applet" },
-		{ .func = cs_conn_io_cb, .name = "cs_conn_io_cb" },
+		{ .func = sc_conn_io_cb, .name = "sc_conn_io_cb" },
 		{ .func = sock_conn_iocb, .name = "sock_conn_iocb" },
 		{ .func = dgram_fd_handler, .name = "dgram_fd_handler" },
 		{ .func = listener_accept, .name = "listener_accept" },