mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 07:38:19 +00:00
Merge branch 'topic/robin/input-threads-merge'
* topic/robin/input-threads-merge: (130 commits) And now it even compiles after my earlier changes. A set of input framework refactoring, cleanup, and polishing. another small memory leak in ascii reader: and another small memory leak when using streaming reads. fix another memory lead (when updating tables). Input framework merge in progress. filters have been called streams for eternity. And I always was too lazy to change it everywhere... reactivate network_time check in threading manager. previously this line made all input framework tests fail - it works now. Some of the other recent changes of the threading manager must have fixed that problem. fix up the executeraw test - now it works for the first time and does not always fail baselines for the autostart removal. remove last remnants of autostart, which has been removed for quite a while. make input framework source (hopefully) adhere to the usual indentation style. No functional changes. fix two memory leaks which occured when one used filters. update description to current interface. rename a couple of structures and make the names in manager fit the api more. fix memory leak in tables and vectors that are read into tables fix missing get call for heart beat in benchmark reader. fix heart_beat_interval -- initialization in constructor does not work anymore (probably due to change in init ordering?) fix memory leak for tables... nearly completely. fix a couple more leaks. But - still leaking quite a lot with tables. ...
This commit is contained in:
commit
c0e0481af2
93 changed files with 8782 additions and 18 deletions
|
@ -19,6 +19,7 @@ rest_target(${psd} base/init-bare.bro internal)
|
|||
rest_target(${CMAKE_BINARY_DIR}/src base/bro.bif.bro)
|
||||
rest_target(${CMAKE_BINARY_DIR}/src base/const.bif.bro)
|
||||
rest_target(${CMAKE_BINARY_DIR}/src base/event.bif.bro)
|
||||
rest_target(${CMAKE_BINARY_DIR}/src base/input.bif.bro)
|
||||
rest_target(${CMAKE_BINARY_DIR}/src base/logging.bif.bro)
|
||||
rest_target(${CMAKE_BINARY_DIR}/src base/reporter.bif.bro)
|
||||
rest_target(${CMAKE_BINARY_DIR}/src base/strings.bif.bro)
|
||||
|
@ -31,6 +32,10 @@ rest_target(${psd} base/frameworks/cluster/setup-connections.bro)
|
|||
rest_target(${psd} base/frameworks/communication/main.bro)
|
||||
rest_target(${psd} base/frameworks/control/main.bro)
|
||||
rest_target(${psd} base/frameworks/dpd/main.bro)
|
||||
rest_target(${psd} base/frameworks/input/main.bro)
|
||||
rest_target(${psd} base/frameworks/input/readers/ascii.bro)
|
||||
rest_target(${psd} base/frameworks/input/readers/benchmark.bro)
|
||||
rest_target(${psd} base/frameworks/input/readers/raw.bro)
|
||||
rest_target(${psd} base/frameworks/intel/main.bro)
|
||||
rest_target(${psd} base/frameworks/logging/main.bro)
|
||||
rest_target(${psd} base/frameworks/logging/postprocessors/scp.bro)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue