CLEANUP: applet: rename the sedesc pointer from "endp" to "sedesc"
Now at least it makes it obvious that it's the stream endpoint descriptor
and not an endpoint. There were few changes thanks to the previous refactor
of the flags.
diff --git a/src/http_client.c b/src/http_client.c
index 67427d5..9fb942f 100644
--- a/src/http_client.c
+++ b/src/http_client.c
@@ -732,8 +732,7 @@
/* if the request contains the HTX_FL_EOM, we finished the request part. */
if (htx->flags & HTX_FL_EOM) {
req->flags |= CF_EOI;
- se_fl_set(appctx->endp,
- SE_FL_EOI);
+ se_fl_set(appctx->sedesc, SE_FL_EOI);
appctx->st0 = HTTPCLIENT_S_RES_STLINE;
}