]> 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)
committerVictor Julien <vjulien@oisf.net>
Thu, 3 Jul 2025 10:16:22 +0000 (12:16 +0200)
As is done in the other case a few lines below

rust/src/http2/http2.rs

index 7f178d18bd30f50af0c7d58961c3e19a18890355..5a711e7c7c8d429c193e6abf7637eb93f2d9810a 100644 (file)
@@ -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;
             }