Bump pre-commit hooks

This commit is contained in:
Benjamin Bannier 2025-07-01 10:39:32 +02:00
parent 6d272038fe
commit b9eabbabba
11 changed files with 28 additions and 28 deletions

View file

@ -25,12 +25,12 @@ function flow_clear(controller: Controller): bool
return F;
}
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_;
register_controller_impl(tpe, name, controller);
register_controller_impl(type_, name, controller);
}
function unregister_controller(controller: Controller)