Merge remote-tracking branch 'origin/topic/vern/dyn-sig-actions'

* origin/topic/vern/dyn-sig-actions:
  allow signature actions to be dynamically updated
This commit is contained in:
Tim Wojtulewicz 2023-07-17 16:35:06 -07:00
commit 819b79e121
3 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
6.1.0-dev.220 | 2023-07-17 16:35:06 -0700
* allow signature actions to be dynamically updated (Vern Paxson, Corelight)
6.1.0-dev.218 | 2023-07-17 16:33:22 -0700 6.1.0-dev.218 | 2023-07-17 16:33:22 -0700
* more extensive ZAM inlining & compilation of lambdas (Vern Paxson, Corelight) * more extensive ZAM inlining & compilation of lambdas (Vern Paxson, Corelight)

View file

@ -1 +1 @@
6.1.0-dev.218 6.1.0-dev.220

View file

@ -101,8 +101,8 @@ export {
host_count: count &log &optional; host_count: count &log &optional;
}; };
## Actions for a signature. ## Actions for a signature. Can be updated dynamically.
const actions: table[string] of Action = { global actions: table[string] of Action = {
["unspecified"] = SIG_IGNORE, # place-holder ["unspecified"] = SIG_IGNORE, # place-holder
} &redef &default = SIG_ALARM; } &redef &default = SIG_ALARM;