mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 16:18:19 +00:00
Move VectorDispatcher to be the only dispatcher
This commit is contained in:
parent
d22481aef3
commit
b46e600775
8 changed files with 36 additions and 397 deletions
|
@ -9,7 +9,7 @@
|
|||
#include "NetVar.h"
|
||||
#include "plugin/Manager.h"
|
||||
#include "Analyzer.h"
|
||||
#include "dispatchers/VectorDispatcher.h"
|
||||
#include "Dispatcher.h"
|
||||
|
||||
using namespace zeek::packet_analysis;
|
||||
|
||||
|
@ -266,7 +266,7 @@ DispatcherPtr Manager::GetDispatcher(Config& configuration, const std::string& d
|
|||
|
||||
const auto& mappings = dispatcher_config->get().GetMappings();
|
||||
|
||||
DispatcherPtr dispatcher = std::make_shared<VectorDispatcher>();
|
||||
DispatcherPtr dispatcher = std::make_shared<Dispatcher>();
|
||||
dispatchers.emplace(dispatcher_name, dispatcher);
|
||||
|
||||
for ( const auto& current_mapping : mappings )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue