15 lines
236 B
Plaintext
15 lines
236 B
Plaintext
##! Establish ZeroMQ connectivity with the broker.
|
|
|
|
@load ./main
|
|
|
|
module Cluster::Backend::ZeroMQ;
|
|
|
|
|
|
event zeek_init() &priority=10
|
|
{
|
|
if ( run_proxy_thread )
|
|
Cluster::Backend::ZeroMQ::spawn_zmq_proxy_thread();
|
|
|
|
Cluster::init();
|
|
}
|