mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
18 lines
264 B
Text
18 lines
264 B
Text
module NetControl;
|
|
|
|
@load ./main
|
|
|
|
function activate(p: PluginState, priority: int)
|
|
{
|
|
activate_impl(p, priority);
|
|
}
|
|
|
|
function add_rule(r: Rule) : string
|
|
{
|
|
return add_rule_impl(r);
|
|
}
|
|
|
|
function remove_rule(id: string) : bool
|
|
{
|
|
return remove_rule_impl(id);
|
|
}
|