Update baselines and news

Includes tiny patches to make all test succesfully pass.
This commit is contained in:
Johanna Amann 2016-03-11 09:57:35 -08:00
parent 50b03676ea
commit 205ad0d55a
6 changed files with 60 additions and 7 deletions

View file

@ -21,12 +21,26 @@ redef Log::default_rotation_interval = 0secs;
@load base/frameworks/netcontrol
@if ( Cluster::local_node_type() == Cluster::WORKER )
event bro_init()
{
suspend_processing();
}
@endif
event NetControl::init()
{
local netcontrol_debug = NetControl::create_debug(T);
NetControl::activate(netcontrol_debug, 0);
}
@if ( Cluster::local_node_type() == Cluster::WORKER )
event remote_connection_handshake_done(p: event_peer)
{
continue_processing();
}
@endif
event connection_established(c: connection)
{
local id = c$id;