/** apply acl_interface string */
static int
-acl_interface_str_cfg(struct acl_list* acl_interface, const char* interface,
+acl_interface_str_cfg(struct acl_list* acl_interface, const char* iface,
const char* s2, int port)
{
struct acl_addr* node;
if(!parse_acl_access(s2, &control)) {
return 0;
}
- if(!(node=acl_find_or_create_str2addr(acl_interface, interface, 1, port))) {
+ if(!(node=acl_find_or_create_str2addr(acl_interface, iface, 1, port))) {
log_err("cannot update ACL on non-configured interface: %s %d",
- interface, port);
+ iface, port);
return 0;
}
node->control = control;
3 October 2022: Wouter
- Fix to remove erroneous TC flag from TCP upstream.
- Fix test tdir skip report printout.
+ - Fix windows compile, the identifier interface is defined in headers.
26 September 2022: George
- Better output for skipped tdir tests.