summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorluwenpeng <[email protected]>2023-04-11 09:48:21 +0800
committerluwenpeng <[email protected]>2023-04-21 18:31:36 +0800
commit0a3d06eed130c24557898b69f7565beb82f102c0 (patch)
tree6936313811f6a69d68ff5471e56c3f84244acfe8 /plugin
parentf81209b225c2439e5e7d81af6702065599a72271 (diff)
TSG-14627 TFE适配Decryption Profile库表的变更
Diffstat (limited to 'plugin')
-rw-r--r--plugin/business/ssl-policy/src/ssl_policy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/business/ssl-policy/src/ssl_policy.cpp b/plugin/business/ssl-policy/src/ssl_policy.cpp
index 89858e4..e4299a2 100644
--- a/plugin/business/ssl-policy/src/ssl_policy.cpp
+++ b/plugin/business/ssl-policy/src/ssl_policy.cpp
@@ -324,7 +324,7 @@ struct ssl_policy_enforcer* ssl_policy_enforcer_create(void* logger)
enforcer->logger=logger;
enforcer->policy_table_id=maat_get_table_id(enforcer->maat, "TSG_SECURITY_COMPILE");
assert(enforcer->policy_table_id >= 0);
- enforcer->profile_table_id=maat_get_table_id(enforcer->maat, "TSG_PROFILE_DECRYPTION");
+ enforcer->profile_table_id=maat_get_table_id(enforcer->maat, "PXY_PROFILE_DECRYPTION");
assert(enforcer->profile_table_id >= 0);
UNUSED int ret=maat_plugin_table_ex_schema_register(enforcer->maat,
"TSG_SECURITY_COMPILE",
@@ -335,7 +335,7 @@ struct ssl_policy_enforcer* ssl_policy_enforcer_create(void* logger)
enforcer);
assert(ret==0);
ret=maat_plugin_table_ex_schema_register(enforcer->maat,
- "TSG_PROFILE_DECRYPTION",
+ "PXY_PROFILE_DECRYPTION",
profile_param_new_cb,
profile_param_free_cb,
profile_param_dup_cb,