]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
http2: mark old txs as updated
authorPhilippe Antoine <pantoine@oisf.net>
Tue, 15 Apr 2025 10:36:47 +0000 (12:36 +0200)
committerPhilippe Antoine <pantoine@oisf.net>
Mon, 7 Jul 2025 07:03:31 +0000 (09:03 +0200)
As is done in the other case a few lines below

(cherry picked from commit 349c21af2c04494e374aeeea2b8bc1feafea12ff)

rust/src/http2/http2.rs

index a79a33c8edf6d6130b1d512d25e24ff582a58523..8aa21189a82d77dc018d962e04ab0e0869d6d92f 100644 (file)
@@ -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;
             }