mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 15:18:20 +00:00
8 lines
172 B
Text
8 lines
172 B
Text
##! 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;
|
|
}
|