mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
9 lines
218 B
Text
9 lines
218 B
Text
##! Interface for the raw input reader.
|
|
|
|
module InputRaw;
|
|
|
|
export {
|
|
## Separator between input records.
|
|
## Please note that the separator has to be exactly one character long
|
|
const record_separator = "\n" &redef;
|
|
}
|