CLEANUP: stconn: rename cs_{check,strm,strm_task} to sc_strm_*
These functions return the app-layer associated with an stconn, which
is a check, a stream or a stream's task. They're used a lot to access
channels, flags and for waking up tasks. Let's just name them
appropriately for the stream connector.
diff --git a/src/check.c b/src/check.c
index c8fe491..7aafb79 100644
--- a/src/check.c
+++ b/src/check.c
@@ -1012,7 +1012,7 @@
int wake_srv_chk(struct stconn *cs)
{
struct connection *conn;
- struct check *check = __cs_check(cs);
+ struct check *check = __sc_check(cs);
struct email_alertq *q = container_of(check, typeof(*q), check);
int ret = 0;