commit | 0698c80a5890f83df5e5ba9359474f5a3bea89b3 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Wed May 11 14:09:57 2022 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Fri May 13 14:28:48 2022 +0200 |
tree | 1c6f1d513b1f3e43795f78f02ae6060c72ae832f | |
parent | c1b8d778054bbc0cf21f65bf387a58b73cc693af [diff] |
CLEANUP: applet: remove the unneeded appctx->owner This one is the pointer to the conn_stream which is always in the endpoint that is always present in the appctx, thus it's not needed. This patch removes it and replaces it with appctx_cs() instead. A few occurences that were using __cs_strm(appctx->owner) were moved directly to appctx_strm() which does the equivalent.