mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
ContentLineAnalyzer: Add getter for skip_partial
This commit is contained in:
parent
42a451c2e3
commit
c6368fc3f0
1 changed files with 3 additions and 0 deletions
|
@ -22,6 +22,9 @@ public:
|
|||
// If enabled, flag (first) line with embedded NUL. Default off.
|
||||
void SetIsNULSensitive(bool enable) { flag_NULs = enable; }
|
||||
|
||||
// Returns true if skipping data above a hole.
|
||||
bool SkipPartial() const { return skip_partial; }
|
||||
|
||||
// If enabled, skip data above a hole. Default off.
|
||||
void SetSkipPartial(bool enable) { skip_partial = enable; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue