mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 14:08:20 +00:00
Rename Pacf to NetControl
This commit is contained in:
parent
eb9fbd1258
commit
0e213352d7
61 changed files with 498 additions and 498 deletions
18
scripts/base/frameworks/netcontrol/non-cluster.bro
Normal file
18
scripts/base/frameworks/netcontrol/non-cluster.bro
Normal file
|
@ -0,0 +1,18 @@
|
|||
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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue