mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

This deprecates the Event constructor and the ``ts`` parameter of Enqueue() Instead, versions are introduced that take a detail::MetadataVectorPtr which can hold the network timestamp metadata and is meant to be allocated by the caller instead of automatically during Enqueue() or within the Event constructor. This also introduces a BifConst ``EventMetadata::add_network_timestamp`` to opt-in adding network timestamps to events globally. It's disabled by default as there are not a lot of known use cases that need this.
89 lines
2.2 KiB
Text
89 lines
2.2 KiB
Text
# Remove in v8.1 when auto_publish() is gone.
|
|
#
|
|
# Not compatible with -O C++ testing since includes two distinct scripts.
|
|
# @TEST-REQUIRES: test "${ZEEK_USE_CPP}" != "1"
|
|
#
|
|
# @TEST-GROUP: broker
|
|
#
|
|
# @TEST-PORT: BROKER_PORT
|
|
#
|
|
# @TEST-EXEC: btest-bg-run recv "zeek -b ../recv.zeek >recv.out"
|
|
# @TEST-EXEC: btest-bg-run send "zeek -b -r $TRACES/ticks-dns-1hr.pcap ../send.zeek >send.out"
|
|
#
|
|
# @TEST-EXEC: btest-bg-wait 45
|
|
# @TEST-EXEC: btest-diff recv/recv.out
|
|
# @TEST-EXEC: btest-diff send/send.out
|
|
|
|
# @TEST-START-FILE send.zeek
|
|
|
|
redef exit_only_after_terminate = T;
|
|
redef EventMetadata::add_network_timestamp = T;
|
|
|
|
global runs = 0;
|
|
global ping: event(msg: string, intended_ts: time);
|
|
|
|
event zeek_init()
|
|
{
|
|
suspend_processing();
|
|
Broker::subscribe("zeek/event/my_topic");
|
|
Broker::auto_publish("zeek/event/my_topic", ping);
|
|
Broker::peer("127.0.0.1", to_port(getenv("BROKER_PORT")));
|
|
}
|
|
|
|
event Broker::peer_added(endpoint: Broker::EndpointInfo, msg: string)
|
|
{
|
|
print fmt("sender added peer: endpoint=%s msg=%s",
|
|
endpoint$network$address, msg);
|
|
continue_processing();
|
|
}
|
|
|
|
event new_connection(c: connection)
|
|
{
|
|
print fmt(">> Run %s (%D)", ++runs, network_time());
|
|
|
|
event ping("my-message-a", network_time());
|
|
schedule 30 mins { ping("my-message-c", network_time() + 30 mins) };
|
|
schedule 15 mins { ping("my-message-b", network_time() + 15 mins) };
|
|
}
|
|
|
|
event Broker::peer_lost(endpoint: Broker::EndpointInfo, msg: string)
|
|
{
|
|
print fmt("sender lost peer: endpoint=%s msg=%s",
|
|
endpoint$network$address, msg);
|
|
terminate();
|
|
}
|
|
|
|
# @TEST-END-FILE
|
|
|
|
|
|
# @TEST-START-FILE recv.zeek
|
|
|
|
redef exit_only_after_terminate = T;
|
|
redef EventMetadata::add_network_timestamp = T;
|
|
|
|
global msg_count = 0;
|
|
|
|
event zeek_init()
|
|
{
|
|
Broker::subscribe("zeek/event/my_topic");
|
|
Broker::listen("127.0.0.1", to_port(getenv("BROKER_PORT")));
|
|
}
|
|
|
|
event Broker::peer_added(endpoint: Broker::EndpointInfo, msg: string)
|
|
{
|
|
print fmt("receiver added peer: endpoint=%s msg=%s", endpoint$network$address, msg);
|
|
}
|
|
|
|
event ping(msg: string, intended_ts: time) &is_used
|
|
{
|
|
if ( ++msg_count >= 10 )
|
|
{
|
|
terminate();
|
|
return;
|
|
}
|
|
|
|
print fmt("receiver got ping: %s intended for %D stamped to %D (is_remote = %s)",
|
|
msg, intended_ts, current_event_time(), is_remote_event());
|
|
}
|
|
|
|
# @TEST-END-FILE
|