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:
Christopher Faulet
2022-03-29 15:23:40 +02:00
parent 908628c4c0
commit e05bf9e413
8 changed files with 34 additions and 35 deletions

View File

@@ -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);