commit | 1c3ead45a4fa6661860566c035c6655496da78c2 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue May 10 19:42:22 2022 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Fri May 13 14:28:48 2022 +0200 |
tree | 534f49f514f8350cc2b671b95c962652a3d6aa59 | |
parent | 4201ab791d9b78c795b507fb00e43098aeeb43b1 [diff] |
MINOR: applet: replace cs_applet_shut() with appctx_shut() The former takes a conn_stream still attached to a valid appctx, which also complicates the termination of the applet. Instead, let's pass the appctx which already points to the endpoint, this allows us to properly detach the conn_stream before the call, which is cleaner and safer.