]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MINOR: stream-int/txn: Move buffer for L7 retries in the HTTP transaction
authorChristopher Faulet <cfaulet@haproxy.com>
Tue, 29 Mar 2022 13:23:40 +0000 (15:23 +0200)
committerChristopher Faulet <cfaulet@haproxy.com>
Wed, 13 Apr 2022 13:10:14 +0000 (15:10 +0200)
commite05bf9e4137a7e61351cf0782abbe2dfd7ec7f04
tree83a200e11f40ca74b57159ae8e41dbfac18a81a1
parent908628c4c0a3a7f01caeccd7d9a50607daa5ed9f
MINOR: stream-int/txn: Move buffer for L7 retries in the HTTP transaction

The L7 retries only concerns the stream when a server connection is
established. Thus instead of storing the L7 buffer into the
stream-interface, it may be moved to the stream. And because it is only
available for HTTP streams, it may be moved in the HTTP transaction.

Associated flags are also moved into the HTTP transaction.
dev/flags/flags.c
include/haproxy/http_ana-t.h
include/haproxy/stream_interface-t.h
include/haproxy/stream_interface.h
src/http_act.c
src/http_ana.c
src/stream.c
src/stream_interface.c