mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 14:08:20 +00:00
Rename all scripts to have ".zeek" file extension
This commit is contained in:
parent
537d9cab97
commit
18bd74454b
357 changed files with 169 additions and 169 deletions
14
scripts/base/frameworks/input/readers/binary.zeek
Normal file
14
scripts/base/frameworks/input/readers/binary.zeek
Normal file
|
@ -0,0 +1,14 @@
|
|||
##! Interface for the binary input reader.
|
||||
|
||||
module InputBinary;
|
||||
|
||||
export {
|
||||
## Size of data chunks to read from the input file at a time.
|
||||
const chunk_size = 1024 &redef;
|
||||
|
||||
## On input streams with a pathless or relative-path source filename,
|
||||
## prefix the following path. This prefix can, but need not be, absolute.
|
||||
## The default is to leave any filenames unchanged. This prefix has no
|
||||
## effect if the source already is an absolute path.
|
||||
const path_prefix = "" &redef;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue