From 06ffb51745b46d2e2ea492c559df07e2bd4e1d0a Mon Sep 17 00:00:00 2001 From: bingwang-ms <66248323+bingwang-ms@users.noreply.github.com> Date: Fri, 3 Mar 2023 21:38:05 -0800 Subject: [PATCH] Define ACL_TABLE and ACL_RULE table in STATE_DB (#748) --- common/schema.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/schema.h b/common/schema.h index bc8270b42..e4e50bf80 100644 --- a/common/schema.h +++ b/common/schema.h @@ -493,6 +493,10 @@ namespace swss { #define STATE_VNET_MONITOR_TABLE_NAME "VNET_MONITOR_TABLE" +// ACL table and ACL rule table +#define STATE_ACL_TABLE_TABLE_NAME "ACL_TABLE_TABLE" +#define STATE_ACL_RULE_TABLE_NAME "ACL_RULE_TABLE" + /***** PROFILE DATABASE *****/ #define PROFILE_DELETE_TABLE "PROFILE_DELETE"