commit | ff022a2b8cf41cae8bc66201202657826e86f156 | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Thu Apr 21 08:38:54 2022 +0200 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Fri Apr 22 14:14:27 2022 +0200 |
tree | c7cb090caa25d944db79f746d6508570a7e47c41 | |
parent | 0264212ba370ff396de593bda31631dfd3108b49 [diff] |
CLEANUP: conn-stream: Rename cs_conn_close() and cs_conn_drain_and_close() These functions don't close the connection but only perform shutdown for reads and writes at the mux level. It is a bit ambiguous. Thus, cs_conn_close() is renamed cs_conn_shut() and cs_conn_drain_and_close() is renamed cs_conn_drain_and_shut(). These both functions rely on cs_conn_shutw() and cs_conn_shutr().