mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 12:08:20 +00:00
Merge topic/actor-system throug a squashed commit.
This commit is contained in:
parent
7a6f5020f6
commit
fe7e1ee7f0
466 changed files with 12559 additions and 9655 deletions
|
@ -10,6 +10,8 @@
|
|||
#include "Hash.h"
|
||||
#include "Net.h"
|
||||
#include "Sessions.h"
|
||||
#include "broker/Manager.h"
|
||||
#include "iosource/Manager.h"
|
||||
|
||||
#include "pcap/pcap.bif.h"
|
||||
|
||||
|
@ -304,13 +306,19 @@ bool PktSrc::ExtractNextPacketInternal()
|
|||
return 1;
|
||||
}
|
||||
|
||||
if ( pseudo_realtime && using_communication && ! IsOpen() )
|
||||
if ( pseudo_realtime && ! IsOpen() )
|
||||
{
|
||||
// Source has gone dry, we're done.
|
||||
if ( remote_trace_sync_interval )
|
||||
remote_serializer->SendFinalSyncPoint();
|
||||
else
|
||||
remote_serializer->Terminate();
|
||||
if ( using_communication )
|
||||
{
|
||||
// Source has gone dry, we're done.
|
||||
if ( remote_trace_sync_interval )
|
||||
remote_serializer->SendFinalSyncPoint();
|
||||
else
|
||||
remote_serializer->Terminate();
|
||||
}
|
||||
|
||||
if ( broker_mgr->Active() )
|
||||
iosource_mgr->Terminate();
|
||||
}
|
||||
|
||||
SetIdle(true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue