mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 09:38:19 +00:00
Merge branch 'topic/bernhard/input' into topic/bernhard/input-threads
most stuff is inplace, logging framework needs a few changes merged before continuing here... Conflicts: src/CMakeLists.txt src/LogMgr.h src/logging/Manager.cc src/main.cc
This commit is contained in:
commit
f6c6387c52
48 changed files with 3399 additions and 7 deletions
28
src/input/ReaderFrontend.cc
Normal file
28
src/input/ReaderFrontend.cc
Normal file
|
@ -0,0 +1,28 @@
|
|||
// See the file "COPYING" in the main distribution directory for copyright.
|
||||
|
||||
#ifndef INPUT_READERFRONTEND_H
|
||||
#define INPUT_READERFRONTEND_H
|
||||
|
||||
#include "Manager.h"
|
||||
|
||||
#include "threading/MsgThread.h"
|
||||
|
||||
namespace logging {
|
||||
|
||||
class ReaderBackend;
|
||||
|
||||
class ReaderFrontend {
|
||||
|
||||
ReaderFrontend(bro_int_t type);
|
||||
|
||||
virtual ~ReaderFrontend();
|
||||
|
||||
|
||||
protected:
|
||||
friend class Manager;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif /* INPUT_READERFRONTEND_H */
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue