CLEANUP: conn_stream: rename the conn_stream's endp to sedesc
Just like for the appctx, this is a pointer to a stream endpoint descriptor,
so let's make this explicit and not confuse it with the full endpoint. There
are very few changes thanks to the preliminary refactoring of the flags
manipulation.
diff --git a/src/cli.c b/src/cli.c
index 9d17df9..fe29583 100644
--- a/src/cli.c
+++ b/src/cli.c
@@ -2782,7 +2782,7 @@
s->srv_error(s, s->csb);
return 1;
}
- se_fl_clr(s->csb->endp, ~SE_FL_DETACHED);
+ se_fl_clr(s->csb->sedesc, ~SE_FL_DETACHED);
}
sockaddr_free(&s->csb->dst);