mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 08:08:19 +00:00
Bump pre-commit hooks
This commit is contained in:
parent
6d272038fe
commit
b9eabbabba
11 changed files with 28 additions and 28 deletions
|
@ -76,16 +76,16 @@ event OpenFlow::cluster_flow_clear(name: string)
|
|||
}
|
||||
@endif
|
||||
|
||||
function register_controller(tpe: OpenFlow::Plugin, name: string, controller: Controller)
|
||||
function register_controller(type_: OpenFlow::Plugin, name: string, controller: Controller)
|
||||
{
|
||||
controller$state$_name = cat(tpe, name);
|
||||
controller$state$_plugin = tpe;
|
||||
controller$state$_name = cat(type_, name);
|
||||
controller$state$_plugin = type_;
|
||||
|
||||
# we only run the init functions on the manager.
|
||||
if ( Cluster::local_node_type() != Cluster::MANAGER )
|
||||
return;
|
||||
|
||||
register_controller_impl(tpe, name, controller);
|
||||
register_controller_impl(type_, name, controller);
|
||||
}
|
||||
|
||||
function unregister_controller(controller: Controller)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue