mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
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:
commit
819b79e121
3 changed files with 7 additions and 3 deletions
4
CHANGES
4
CHANGES
|
@ -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
|
||||
|
||||
* more extensive ZAM inlining & compilation of lambdas (Vern Paxson, Corelight)
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
6.1.0-dev.218
|
||||
6.1.0-dev.220
|
||||
|
|
|
@ -101,8 +101,8 @@ export {
|
|||
host_count: count &log &optional;
|
||||
};
|
||||
|
||||
## Actions for a signature.
|
||||
const actions: table[string] of Action = {
|
||||
## Actions for a signature. Can be updated dynamically.
|
||||
global actions: table[string] of Action = {
|
||||
["unspecified"] = SIG_IGNORE, # place-holder
|
||||
} &redef &default = SIG_ALARM;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue