From: Philippe Antoine Date: Tue, 15 Apr 2025 10:36:47 +0000 (+0200) Subject: http2: mark old txs as updated X-Git-Tag: suricata-8.0.0~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=349c21af2c04494e374aeeea2b8bc1feafea12ff;p=thirdparty%2Fsuricata.git http2: mark old txs as updated As is done in the other case a few lines below --- diff --git a/rust/src/http2/http2.rs b/rust/src/http2/http2.rs index 7f178d18bd..5a711e7c7c 100644 --- a/rust/src/http2/http2.rs +++ b/rust/src/http2/http2.rs @@ -742,6 +742,8 @@ impl HTTP2State { tx_old.set_event(HTTP2Event::TooManyStreams); // use a distinct state, even if we do not log it tx_old.state = HTTP2TransactionState::HTTP2StateTodrop; + tx_old.tx_data.updated_tc = true; + tx_old.tx_data.updated_ts = true; } return None; }