]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MINOR: quic: remove connection arg from qc_new_conn()
authorAmaury Denoyelle <adenoyelle@haproxy.com>
Tue, 4 Nov 2025 16:47:42 +0000 (17:47 +0100)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Tue, 4 Nov 2025 16:47:42 +0000 (17:47 +0100)
commitefe60745b351a076799ea4af048199efbdb6006c
tree100eefa26fec88575691b7c7ea00b4a9304e0458
parent5a17cade4f60c6ba5a9321916df874233ab898cb
MINOR: quic: remove connection arg from qc_new_conn()

This patch is similar to the previous one, this time dealing with
qc_new_conn(). This function was asymetric on frontend and backend side,
as connection argument was set only in the latter case.

This was required prior due to qc_alloc_ssl_sock_ctx() signature. This
has changed with the previous patch, thus qc_new_conn() can also be
realigned on both FE and BE sides. <conn> member of quic_conn instance
is always set outside it, in qc_xprt_start() on the backend case.
include/haproxy/quic_conn.h
src/quic_conn.c
src/quic_rx.c
src/xprt_quic.c