mirror of
http://git.haproxy.org/git/haproxy.git
synced 2026-02-05 04:23:22 +02:00
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.
This commit is contained in:
@@ -279,8 +279,6 @@ void show_si_flags(unsigned int f)
|
||||
SHOW_FLAG(f, SI_FL_RXBLK_SHUT);
|
||||
SHOW_FLAG(f, SI_FL_RXBLK_CONN);
|
||||
SHOW_FLAG(f, SI_FL_RX_WAIT_EP);
|
||||
SHOW_FLAG(f, SI_FL_L7_RETRY);
|
||||
SHOW_FLAG(f, SI_FL_D_L7_RETRY);
|
||||
SHOW_FLAG(f, SI_FL_ADDR_FROM_SET);
|
||||
SHOW_FLAG(f, SI_FL_ADDR_TO_SET);
|
||||
|
||||
@@ -332,6 +330,8 @@ void show_txn_flags(unsigned int f)
|
||||
return;
|
||||
}
|
||||
|
||||
SHOW_FLAG(f, TX_L7_RETRY);
|
||||
SHOW_FLAG(f, TX_D_L7_RETRY);
|
||||
SHOW_FLAG(f, TX_NOT_FIRST);
|
||||
SHOW_FLAG(f, TX_USE_PX_CONN);
|
||||
SHOW_FLAG(f, TX_CACHE_HAS_SEC_KEY);
|
||||
|
||||
Reference in New Issue
Block a user