mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 08:08:19 +00:00
Remove a few protected or private no-op constructors
This commit is contained in:
parent
914a4d6342
commit
f597e925aa
7 changed files with 5 additions and 15 deletions
|
@ -12,11 +12,6 @@ FileReassembler::FileReassembler(File *f, uint64_t starting_offset)
|
|||
{
|
||||
}
|
||||
|
||||
FileReassembler::FileReassembler()
|
||||
: zeek::Reassembler(), the_file(nullptr), flushing(false)
|
||||
{
|
||||
}
|
||||
|
||||
FileReassembler::~FileReassembler()
|
||||
{
|
||||
}
|
||||
|
|
|
@ -48,14 +48,13 @@ public:
|
|||
{ return flushing; }
|
||||
|
||||
protected:
|
||||
FileReassembler();
|
||||
|
||||
void Undelivered(uint64_t up_to_seq) override;
|
||||
void BlockInserted(zeek::DataBlockMap::const_iterator it) override;
|
||||
void Overlap(const u_char* b1, const u_char* b2, uint64_t n) override;
|
||||
|
||||
File* the_file;
|
||||
bool flushing;
|
||||
File* the_file = nullptr;
|
||||
bool flushing = false;
|
||||
};
|
||||
|
||||
} // namespace analyzer::*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue