]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MINOR: connection: Be prepared to handle conn-stream with no connection
authorChristopher Faulet <cfaulet@haproxy.com>
Wed, 15 Dec 2021 08:50:17 +0000 (09:50 +0100)
committerChristopher Faulet <cfaulet@haproxy.com>
Thu, 24 Feb 2022 10:00:01 +0000 (11:00 +0100)
commit0256da14a5a35eb96687912f285cd55318229c60
treeabb5b97d044571e9a0f2a805b922973265f204a9
parent719ceef79c45f9b548985da5dbca41a0189808c6
MINOR: connection: Be prepared to handle conn-stream with no connection

The conn-stream will progressively replace the stream-interface. Thus, a
stream will have to allocate the backend conn-stream during its
creation. This means it will be possible to have a conn-stream with no
connection. To prepare this change, we test the conn-stream's connection
when we retrieve it.
include/haproxy/connection.h
include/haproxy/stream_interface.h
src/backend.c
src/check.c
src/http_ana.c
src/stream.c
src/stream_interface.c