]> git.ipfire.org Git - thirdparty/haproxy.git/commit
CLEANUP: conn_stream: rename the cs_endpoint's context to "conn"
authorWilly Tarreau <w@1wt.eu>
Mon, 16 May 2022 15:17:16 +0000 (17:17 +0200)
committerWilly Tarreau <w@1wt.eu>
Fri, 27 May 2022 17:33:34 +0000 (19:33 +0200)
commit24d15b18919085927816e55fac4809038cda0f12
tree3d6e86aad78822ab075043b9a9f41db0113ced6e
parent5fec7a1f986f4ec600042c76ae8566d59d4ec5bc
CLEANUP: conn_stream: rename the cs_endpoint's context to "conn"

This one is exclusively used by the connection, regardless its generic
name "ctx" is rather confusing. Let's make it a struct connection* and
call it "conn". This way there's no doubt about what it is and there's
no way it will be used by accident by being taken for something else.
include/haproxy/conn_stream-t.h
include/haproxy/conn_stream.h
include/haproxy/mux_quic.h
src/conn_stream.c
src/mux_h1.c
src/mux_h2.c
src/mux_pt.c