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

These are no longer loaded by default due to the performance impact they cause simply by being loaded (they have event handlers for commonly generated events) and they aren't generally useful enough to justify it.
14 lines
227 B
Text
14 lines
227 B
Text
@load ./types
|
|
@load ./main
|
|
@load ./plugins
|
|
@load ./drop
|
|
@load ./shunt
|
|
|
|
# The cluster framework must be loaded first.
|
|
@load base/frameworks/cluster
|
|
|
|
@if ( Cluster::is_enabled() )
|
|
@load ./cluster
|
|
@else
|
|
@load ./non-cluster
|
|
@endif
|