mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Make Spicy hook execution order deterministic in test
This commit is contained in:
parent
f47a089576
commit
f57955321e
1 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ public type Banner = unit {
|
|||
protocol analyzer spicy::SSH over TCP:
|
||||
parse originator with SSH::Banner;
|
||||
|
||||
on SSH::Banner::%error(msg: string) -> event Banner::error(msg);
|
||||
on SSH::Banner::%error() -> event Banner::error("n/a");
|
||||
on SSH::Banner::%error(msg: string) -> event Banner::error(msg) &priority=2;
|
||||
on SSH::Banner::%error() -> event Banner::error("n/a") &priority=1;
|
||||
|
||||
# @TEST-END-FILE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue