commit | eb50c01fef2701eb7810f9f79df3a9cf5526bfe1 | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Thu Apr 21 14:22:53 2022 +0200 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Fri Apr 22 14:32:30 2022 +0200 |
tree | 2d4764ce2697df1a2d1d224f5f31b3ddd4ec0e57 | |
parent | c6b60f1e00926cc9db1f20ec56a69d8192a9ff5a [diff] |
MINOR: conn-stream: Make cs_detach_* private and use cs_destroy() from outside A conn-stream is never detached from an endpoint or an application alone, except on a reset. Thus, to avoid any error, these functions are now private. And cs_destroy() function is added to destroy a conn-stream. This function is called when a stream is released, on the front and back conn-streams, and when a health-check is finished.