mirror of
http://git.haproxy.org/git/haproxy.git
synced 2026-02-04 13:53:39 +02:00
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.
This commit is contained in:
@@ -263,7 +263,6 @@ void show_si_flags(unsigned int f)
|
||||
return;
|
||||
}
|
||||
|
||||
SHOW_FLAG(f, SI_FL_EXP);
|
||||
SHOW_FLAG(f, SI_FL_ERR);
|
||||
SHOW_FLAG(f, SI_FL_KILL_CONN);
|
||||
SHOW_FLAG(f, SI_FL_WAIT_DATA);
|
||||
@@ -418,6 +417,7 @@ void show_strm_flags(unsigned int f)
|
||||
SHOW_FLAG(f, SF_REDIRECTABLE);
|
||||
SHOW_FLAG(f, SF_IGNORE);
|
||||
SHOW_FLAG(f, SF_REDISP);
|
||||
SHOW_FLAG(f, SF_CONN_EXP);
|
||||
SHOW_FLAG(f, SF_CURR_SESS);
|
||||
SHOW_FLAG(f, SF_MONITOR);
|
||||
SHOW_FLAG(f, SF_FORCE_PRST);
|
||||
|
||||
Reference in New Issue
Block a user