CLEANUP: conn_stream: rename the cs_endpoint's target to "se"
That's the "stream endpoint" pointer. Let's change it now while it's
not much spread. The function __cs_endp_target() wasn't yet renamed
because that will change more globally soon.
diff --git a/src/mux_quic.c b/src/mux_quic.c
index 878b44c..8e9bda9 100644
--- a/src/mux_quic.c
+++ b/src/mux_quic.c
@@ -1424,7 +1424,7 @@
static void qc_detach(struct cs_endpoint *endp)
{
- struct qcs *qcs = endp->target;
+ struct qcs *qcs = endp->se;
struct qcc *qcc = qcs->qcc;
TRACE_ENTER(QMUX_EV_STRM_END, qcc->conn, qcs);