commit | 2479e5f7754c9b1dcfe32cba1ff3e72c94792415 | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Wed Jan 19 14:50:11 2022 +0100 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Wed Apr 13 15:10:13 2022 +0200 |
tree | 8b39dacd93d1b684bb4c92c024dec632c201afab | |
parent | 81a40f630e2c9a48484ff62a3e91676ecc59f0e7 [diff] |
MEDIUM: applet: Set the appctx owner during allocation The appctx owner is now always a conn-stream. Thus, it can be set during the appctx allocation. But, to do so, the conn-stream must be created first. It is not a problem on the server side because the conn-stream is created with the stream. On the client side, we must take care to create the conn-stream first. This change should ease other changes about the applets bootstrapping.