mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Spicy: Provide zeek::skip_input()
to disable deliver to current analyzer.
``` ## Tells Zeek to skip sending any further input data to the current analyzer. ## This is supported for protocol and file analyzers. public function skip_input() : void; ``` Closes #3443.
This commit is contained in:
parent
9b1f3b5838
commit
f5aa5c3466
8 changed files with 140 additions and 2 deletions
|
@ -118,6 +118,10 @@ public function fuid() : string &cxxname="zeek::spicy::rt::fuid";
|
|||
## called from inside a protocol analyzer.
|
||||
public function terminate_session() : void &cxxname="zeek::spicy::rt::terminate_session";
|
||||
|
||||
## Tells Zeek to skip sending any further input data to the current analyzer.
|
||||
## This is supported for protocol and file analyzers.
|
||||
public function skip_input() : void &cxxname="zeek::spicy::rt::skip_input";
|
||||
|
||||
## Signals the expected size of a file to Zeek's file analysis.
|
||||
##
|
||||
## size: expected size of file
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue