diff options
Diffstat (limited to 'src/plugins/acl/acl.api')
-rw-r--r-- | src/plugins/acl/acl.api | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/plugins/acl/acl.api b/src/plugins/acl/acl.api index cde46c444dd..0c230c5fd54 100644 --- a/src/plugins/acl/acl.api +++ b/src/plugins/acl/acl.api @@ -547,3 +547,15 @@ define acl_interface_etype_whitelist_details u16 whitelist[count]; }; +/** \brief Enable or disable incrementing ACL counters in stats segment by interface processing + @param client_index - opaque cookie to identify the sender + @param context - sender context, to match reply w/ request + @param enable - whether to enable or disable incrementing the counters +*/ + +autoreply define acl_stats_intf_counters_enable +{ + u32 client_index; + u32 context; + bool enable; +}; |