From: Philippe Antoine Date: Tue, 15 Apr 2025 10:36:47 +0000 (+0200) Subject: http2: mark old txs as updated X-Git-Tag: suricata-7.0.11~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de2bdfec998317923e46b46e539c5a4c82f33231;p=thirdparty%2Fsuricata.git http2: mark old txs as updated As is done in the other case a few lines below (cherry picked from commit 349c21af2c04494e374aeeea2b8bc1feafea12ff) --- diff --git a/rust/src/http2/http2.rs b/rust/src/http2/http2.rs index a79a33c8ed..8aa21189a8 100644 --- a/rust/src/http2/http2.rs +++ b/rust/src/http2/http2.rs @@ -623,6 +623,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; }