mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 00:28:21 +00:00
Rename broker-related namespaces.
c++ namespace "comm" -> bro_broker script module "Comm" -> BrokerComm script module "Store" -> BrokerStore
This commit is contained in:
parent
25a4d0ebed
commit
fa08083a92
65 changed files with 1142 additions and 1142 deletions
|
@ -96,7 +96,7 @@ void EventHandler::Call(val_list* vl, bool no_remote)
|
|||
|
||||
for ( auto i = 0; i < vl->length(); ++i )
|
||||
{
|
||||
auto opt_data = comm::val_to_data((*vl)[i]);
|
||||
auto opt_data = bro_broker::val_to_data((*vl)[i]);
|
||||
|
||||
if ( opt_data )
|
||||
msg.emplace_back(move(*opt_data));
|
||||
|
@ -116,9 +116,9 @@ void EventHandler::Call(val_list* vl, bool no_remote)
|
|||
it != auto_remote_send.end(); ++it )
|
||||
{
|
||||
if ( std::next(it) == auto_remote_send.end() )
|
||||
comm_mgr->Event(it->first, move(msg), it->second);
|
||||
broker_mgr->Event(it->first, move(msg), it->second);
|
||||
else
|
||||
comm_mgr->Event(it->first, msg, it->second);
|
||||
broker_mgr->Event(it->first, msg, it->second);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue