From: Philippe Antoine Date: Thu, 16 Oct 2025 14:10:28 +0000 (+0200) Subject: detect/integers: rename all1 to all X-Git-Tag: suricata-8.0.2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F2738%2Fhead;p=thirdparty%2Fsuricata-verify.git detect/integers: rename all1 to all And all to all_or_absent Ticket: 7929 --- diff --git a/tests/http2-window-index/test.rules b/tests/http2-window-index/test.rules index cc1e9083b..49bb5eda0 100644 --- a/tests/http2-window-index/test.rules +++ b/tests/http2-window-index/test.rules @@ -1,11 +1,11 @@ # happens once alert http2 any any -> any any (http2.window:32768; sid:4; rev:1;) # happens many times because many txs do not have any http2.window -alert http2 any any -> any any (http2.window:32768,all; sid:5; rev:1;) +alert http2 any any -> any any (http2.window:32768,all_or_absent; sid:5; rev:1;) # does not happen as tx is 3 has http2.window:32768 and http2.window:32767 -alert http2 any any -> any any (http2.window:32768,all1; sid:6; rev:1;) +alert http2 any any -> any any (http2.window:32768,all; sid:6; rev:1;) # matches (range is exclusive) -alert http2 any any -> any any (http2.window:32766-32769,all1; sid:7; rev:1;) +alert http2 any any -> any any (http2.window:32766-32769,all; sid:7; rev:1;) # matches for stream id 5 alert http2 any any -> any any (http2.window:>36000,nb>1; sid:8; rev:1;) # happens many times because many txs do not have any http2.window