]> git.kaiwu.me - haproxy.git/commit
MEDIUM: conn-stream: Be able to pass endpoint to create a conn-stream
authorChristopher Faulet <cfaulet@haproxy.com>
Tue, 22 Mar 2022 17:37:19 +0000 (18:37 +0100)
committerChristopher Faulet <cfaulet@haproxy.com>
Wed, 13 Apr 2022 13:10:14 +0000 (15:10 +0200)
commitb669d684c030c696c0c7471b7849845b74455c45
treed5dd27eccdf88530d0b4ebe077264d8f2777bfae
parente9e482028897ce23ea1173ae3122b36afe8ad915
MEDIUM: conn-stream: Be able to pass endpoint to create a conn-stream

It is a transient commit to prepare next changes. It is possible to pass a
pre-allocated endpoint to create a new conn-stream. If it is NULL, a new
endpoint is created, otherwise the existing one is used. There no more
change at the conn-stream level.

In the applets, all conn-stream are created with no pre-allocated
endpoint. But for multiplexers, an endpoint is systematically created before
creating the conn-stream.
14 files changed:
include/haproxy/conn_stream.h
include/haproxy/mux_quic.h
src/check.c
src/conn_stream.c
src/dns.c
src/flt_spoe.c
src/hlua.c
src/http_client.c
src/mux_h1.c
src/mux_h2.c
src/mux_pt.c
src/peers.c
src/sink.c
src/stream.c