]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MEDIUM: stream-int/stream: Use connect expiration instead of SI expiration
authorChristopher Faulet <cfaulet@haproxy.com>
Tue, 29 Mar 2022 17:02:31 +0000 (19:02 +0200)
committerChristopher Faulet <cfaulet@haproxy.com>
Wed, 13 Apr 2022 13:10:14 +0000 (15:10 +0200)
commitae024ced0368d34437a5a371a49b014658bd4129
tree850c06eecc4e2ccb31a6860af576270b420137f8
parent1d9877700ed732278dc8c60fa16da6523273d6a0
MEDIUM: stream-int/stream: Use connect expiration instead of SI expiration

The expiration date in the stream-interface was only used on the server side
to set the connect, queue or turn-around timeout. It was checked on the
frontend stream-interface, but never used concretely. So it was removed and
replaced by a connect expiration date in the stream itself. Thus, SI_FL_EXP
flag in stream-interfaces is replaced by a stream flag, SF_CONN_EXP.
dev/flags/flags.c
include/haproxy/stream-t.h
include/haproxy/stream.h
include/haproxy/stream_interface-t.h
include/haproxy/stream_interface.h
src/backend.c
src/cli.c
src/debug.c
src/http_ana.c
src/stream.c
src/stream_interface.c