From a046475b9273298a0fdcecba741ed77775582475 Mon Sep 17 00:00:00 2001 From: Razvan Becheriu Date: Thu, 16 May 2019 09:51:52 +0300 Subject: [PATCH] updated log messages --- src/hooks/dhcp/mysql_cb/mysql_cb_dhcp4.cc | 53 ++- src/hooks/dhcp/mysql_cb/mysql_cb_dhcp6.cc | 53 ++- src/hooks/dhcp/mysql_cb/mysql_cb_log.cc | 2 +- src/hooks/dhcp/mysql_cb/mysql_cb_log.h | 2 +- src/hooks/dhcp/mysql_cb/mysql_cb_messages.cc | 234 ++++++----- src/hooks/dhcp/mysql_cb/mysql_cb_messages.h | 26 +- src/hooks/dhcp/mysql_cb/mysql_cb_messages.mes | 376 +++++++++++------- 7 files changed, 478 insertions(+), 268 deletions(-) diff --git a/src/hooks/dhcp/mysql_cb/mysql_cb_dhcp4.cc b/src/hooks/dhcp/mysql_cb/mysql_cb_dhcp4.cc index 577222a09c..afb6cb4900 100644 --- a/src/hooks/dhcp/mysql_cb/mysql_cb_dhcp4.cc +++ b/src/hooks/dhcp/mysql_cb/mysql_cb_dhcp4.cc @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include @@ -2307,15 +2308,20 @@ MySqlConfigBackendDHCPv4::getAllSubnets4(const ServerSelector& server_selector) LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_ALL_SUBNETS4); Subnet4Collection subnets; impl_->getAllSubnets4(server_selector, subnets); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_ALL_SUBNETS4_RESULT) + .arg(subnets.size()); return (subnets); } Subnet4Collection MySqlConfigBackendDHCPv4::getModifiedSubnets4(const ServerSelector& server_selector, const boost::posix_time::ptime& modification_time) const { - LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_SUBNETS4); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_SUBNETS4) + .arg(util::ptimeToText(modification_time)); Subnet4Collection subnets; impl_->getModifiedSubnets4(server_selector, modification_time, subnets); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_SUBNETS4_RESULT) + .arg(subnets.size()); return (subnets); } @@ -2326,6 +2332,8 @@ MySqlConfigBackendDHCPv4::getSharedNetworkSubnets4(const ServerSelector& server_ .arg(shared_network_name); Subnet4Collection subnets; impl_->getSharedNetworkSubnets4(server_selector, shared_network_name, subnets); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_SHARED_NETWORK_SUBNETS4_RESULT) + .arg(subnets.size()); return (subnets); } @@ -2342,15 +2350,20 @@ MySqlConfigBackendDHCPv4::getAllSharedNetworks4(const ServerSelector& server_sel LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_ALL_SHARED_NETWORKS4); SharedNetwork4Collection shared_networks; impl_->getAllSharedNetworks4(server_selector, shared_networks); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_ALL_SHARED_NETWORKS4_RESULT) + .arg(shared_networks.size()); return (shared_networks); } SharedNetwork4Collection MySqlConfigBackendDHCPv4::getModifiedSharedNetworks4(const ServerSelector& server_selector, const boost::posix_time::ptime& modification_time) const { - LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS4); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS4) + .arg(util::ptimeToText(modification_time)); SharedNetwork4Collection shared_networks; impl_->getModifiedSharedNetworks4(server_selector, modification_time, shared_networks); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS4_RESULT) + .arg(shared_networks.size()); return (shared_networks); } @@ -2370,16 +2383,21 @@ MySqlConfigBackendDHCPv4::getAllOptionDefs4(const ServerSelector& server_selecto OptionDefContainer option_defs; impl_->getAllOptionDefs(MySqlConfigBackendDHCPv4Impl::GET_ALL_OPTION_DEFS4, server_selector, option_defs); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_ALL_OPTION_DEFS4_RESULT) + .arg(option_defs.size()); return (option_defs); } OptionDefContainer MySqlConfigBackendDHCPv4::getModifiedOptionDefs4(const ServerSelector& server_selector, const boost::posix_time::ptime& modification_time) const { - LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_OPTION_DEFS4); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_OPTION_DEFS4) + .arg(util::ptimeToText(modification_time)); OptionDefContainer option_defs; impl_->getModifiedOptionDefs(MySqlConfigBackendDHCPv4Impl::GET_MODIFIED_OPTION_DEFS4, server_selector, modification_time, option_defs); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_OPTION_DEFS4_RESULT) + .arg(option_defs.size()); return (option_defs); } @@ -2396,16 +2414,23 @@ MySqlConfigBackendDHCPv4::getOption4(const ServerSelector& server_selector, OptionContainer MySqlConfigBackendDHCPv4::getAllOptions4(const ServerSelector& server_selector) const { LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_ALL_OPTIONS4); - return (impl_->getAllOptions(MySqlConfigBackendDHCPv4Impl::GET_ALL_OPTIONS4, - Option::V4, server_selector)); + OptionContainer options = impl_->getAllOptions(MySqlConfigBackendDHCPv4Impl::GET_ALL_OPTIONS4, + Option::V4, server_selector); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_ALL_OPTIONS4_RESULT) + .arg(options.size()); + return (options); } OptionContainer MySqlConfigBackendDHCPv4::getModifiedOptions4(const ServerSelector& server_selector, const boost::posix_time::ptime& modification_time) const { - LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_OPTIONS4); - return (impl_->getModifiedOptions(MySqlConfigBackendDHCPv4Impl::GET_MODIFIED_OPTIONS4, - Option::V4, server_selector, modification_time)); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_OPTIONS4) + .arg(util::ptimeToText(modification_time)); + OptionContainer options = impl_->getModifiedOptions(MySqlConfigBackendDHCPv4Impl::GET_MODIFIED_OPTIONS4, + Option::V4, server_selector, modification_time); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_OPTIONS4_RESULT) + .arg(options.size()); + return (options); } StampedValuePtr @@ -2426,13 +2451,16 @@ MySqlConfigBackendDHCPv4::getAllGlobalParameters4(const ServerSelector& server_s impl_->getGlobalParameters(MySqlConfigBackendDHCPv4Impl::GET_ALL_GLOBAL_PARAMETERS4, in_bindings, parameters); } + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS4_RESULT) + .arg(parameters.size()); return (parameters); } StampedValueCollection MySqlConfigBackendDHCPv4::getModifiedGlobalParameters4(const db::ServerSelector& server_selector, const boost::posix_time::ptime& modification_time) const { - LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS4); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS4) + .arg(util::ptimeToText(modification_time)); StampedValueCollection parameters; auto tags = impl_->getServerTags(server_selector); for (auto tag : tags) { @@ -2443,16 +2471,21 @@ MySqlConfigBackendDHCPv4::getModifiedGlobalParameters4(const db::ServerSelector& impl_->getGlobalParameters(MySqlConfigBackendDHCPv4Impl::GET_MODIFIED_GLOBAL_PARAMETERS4, in_bindings, parameters); } + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS4_RESULT) + .arg(parameters.size()); return (parameters); } AuditEntryCollection MySqlConfigBackendDHCPv4::getRecentAuditEntries(const db::ServerSelector& server_selector, const boost::posix_time::ptime& modification_time) const { - LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_RECENT_AUDIT_ENTRIES4); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_RECENT_AUDIT_ENTRIES4) + .arg(util::ptimeToText(modification_time)); AuditEntryCollection audit_entries; impl_->getRecentAuditEntries(MySqlConfigBackendDHCPv4Impl::GET_AUDIT_ENTRIES4_TIME, server_selector, modification_time, audit_entries); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_RECENT_AUDIT_ENTRIES4_RESULT) + .arg(audit_entries.size()); return (audit_entries); } diff --git a/src/hooks/dhcp/mysql_cb/mysql_cb_dhcp6.cc b/src/hooks/dhcp/mysql_cb/mysql_cb_dhcp6.cc index a712fb13b3..bc95a61a80 100644 --- a/src/hooks/dhcp/mysql_cb/mysql_cb_dhcp6.cc +++ b/src/hooks/dhcp/mysql_cb/mysql_cb_dhcp6.cc @@ -23,6 +23,7 @@ #include #include #include +#include #include #include #include @@ -2596,15 +2597,20 @@ MySqlConfigBackendDHCPv6::getAllSubnets6(const ServerSelector& server_selector) LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_ALL_SUBNETS6); Subnet6Collection subnets; impl_->getAllSubnets6(server_selector, subnets); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_ALL_SUBNETS6_RESULT) + .arg(subnets.size()); return (subnets); } Subnet6Collection MySqlConfigBackendDHCPv6::getModifiedSubnets6(const ServerSelector& server_selector, const boost::posix_time::ptime& modification_time) const { - LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_SUBNETS6); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_SUBNETS6) + .arg(util::ptimeToText(modification_time)); Subnet6Collection subnets; impl_->getModifiedSubnets6(server_selector, modification_time, subnets); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_SUBNETS6_RESULT) + .arg(subnets.size()); return (subnets); } @@ -2615,6 +2621,8 @@ MySqlConfigBackendDHCPv6::getSharedNetworkSubnets6(const ServerSelector& server_ .arg(shared_network_name); Subnet6Collection subnets; impl_->getSharedNetworkSubnets6(server_selector, shared_network_name, subnets); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_SHARED_NETWORK_SUBNETS6_RESULT) + .arg(subnets.size()); return (subnets); } @@ -2631,15 +2639,20 @@ MySqlConfigBackendDHCPv6::getAllSharedNetworks6(const ServerSelector& server_sel LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_ALL_SHARED_NETWORKS6); SharedNetwork6Collection shared_networks; impl_->getAllSharedNetworks6(server_selector, shared_networks); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_ALL_SHARED_NETWORKS6_RESULT) + .arg(shared_networks.size()); return (shared_networks); } SharedNetwork6Collection MySqlConfigBackendDHCPv6::getModifiedSharedNetworks6(const ServerSelector& server_selector, const boost::posix_time::ptime& modification_time) const { - LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS6); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS6) + .arg(util::ptimeToText(modification_time)); SharedNetwork6Collection shared_networks; impl_->getModifiedSharedNetworks6(server_selector, modification_time, shared_networks); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS6_RESULT) + .arg(shared_networks.size()); return (shared_networks); } @@ -2659,16 +2672,21 @@ MySqlConfigBackendDHCPv6::getAllOptionDefs6(const ServerSelector& server_selecto OptionDefContainer option_defs; impl_->getAllOptionDefs(MySqlConfigBackendDHCPv6Impl::GET_ALL_OPTION_DEFS6, server_selector, option_defs); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_ALL_OPTION_DEFS6_RESULT) + .arg(option_defs.size()); return (option_defs); } OptionDefContainer MySqlConfigBackendDHCPv6::getModifiedOptionDefs6(const ServerSelector& server_selector, const boost::posix_time::ptime& modification_time) const { - LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_OPTION_DEFS6); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_OPTION_DEFS6) + .arg(util::ptimeToText(modification_time)); OptionDefContainer option_defs; impl_->getModifiedOptionDefs(MySqlConfigBackendDHCPv6Impl::GET_MODIFIED_OPTION_DEFS6, server_selector, modification_time, option_defs); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_OPTION_DEFS6_RESULT) + .arg(option_defs.size()); return (option_defs); } @@ -2685,16 +2703,23 @@ MySqlConfigBackendDHCPv6::getOption6(const ServerSelector& server_selector, OptionContainer MySqlConfigBackendDHCPv6::getAllOptions6(const ServerSelector& server_selector) const { LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_ALL_OPTIONS6); - return (impl_->getAllOptions(MySqlConfigBackendDHCPv6Impl::GET_ALL_OPTIONS6, - Option::V6, server_selector)); + OptionContainer options = impl_->getAllOptions(MySqlConfigBackendDHCPv6Impl::GET_ALL_OPTIONS6, + Option::V6, server_selector); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_ALL_OPTIONS6_RESULT) + .arg(options.size()); + return (options); } OptionContainer MySqlConfigBackendDHCPv6::getModifiedOptions6(const ServerSelector& server_selector, const boost::posix_time::ptime& modification_time) const { - LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_OPTIONS6); - return (impl_->getModifiedOptions(MySqlConfigBackendDHCPv6Impl::GET_MODIFIED_OPTIONS6, - Option::V6, server_selector, modification_time)); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_OPTIONS6) + .arg(util::ptimeToText(modification_time)); + OptionContainer options = impl_->getModifiedOptions(MySqlConfigBackendDHCPv6Impl::GET_MODIFIED_OPTIONS6, + Option::V6, server_selector, modification_time); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_OPTIONS6_RESULT) + .arg(options.size()); + return (options); } StampedValuePtr @@ -2715,13 +2740,16 @@ MySqlConfigBackendDHCPv6::getAllGlobalParameters6(const ServerSelector& server_s impl_->getGlobalParameters(MySqlConfigBackendDHCPv6Impl::GET_ALL_GLOBAL_PARAMETERS6, in_bindings, parameters); } + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS6_RESULT) + .arg(parameters.size()); return (parameters); } StampedValueCollection MySqlConfigBackendDHCPv6::getModifiedGlobalParameters6(const db::ServerSelector& server_selector, const boost::posix_time::ptime& modification_time) const { - LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS6); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS6) + .arg(util::ptimeToText(modification_time)); StampedValueCollection parameters; auto tags = impl_->getServerTags(server_selector); for (auto tag : tags) { @@ -2732,16 +2760,21 @@ MySqlConfigBackendDHCPv6::getModifiedGlobalParameters6(const db::ServerSelector& impl_->getGlobalParameters(MySqlConfigBackendDHCPv6Impl::GET_MODIFIED_GLOBAL_PARAMETERS6, in_bindings, parameters); } + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS6_RESULT) + .arg(parameters.size()); return (parameters); } AuditEntryCollection MySqlConfigBackendDHCPv6::getRecentAuditEntries(const db::ServerSelector& server_selector, const boost::posix_time::ptime& modification_time) const { - LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_RECENT_AUDIT_ENTRIES6); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_RECENT_AUDIT_ENTRIES6) + .arg(util::ptimeToText(modification_time)); AuditEntryCollection audit_entries; impl_->getRecentAuditEntries(MySqlConfigBackendDHCPv6Impl::GET_AUDIT_ENTRIES6_TIME, server_selector, modification_time, audit_entries); + LOG_DEBUG(mysql_cb_logger, DBGLVL_TRACE_BASIC, MYSQL_CB_GET_RECENT_AUDIT_ENTRIES6_RESULT) + .arg(audit_entries.size()); return (audit_entries); } diff --git a/src/hooks/dhcp/mysql_cb/mysql_cb_log.cc b/src/hooks/dhcp/mysql_cb/mysql_cb_log.cc index 46222f3cc5..3c173425ef 100644 --- a/src/hooks/dhcp/mysql_cb/mysql_cb_log.cc +++ b/src/hooks/dhcp/mysql_cb/mysql_cb_log.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2017-2018 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2019 Internet Systems Consortium, Inc. ("ISC") // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/hooks/dhcp/mysql_cb/mysql_cb_log.h b/src/hooks/dhcp/mysql_cb/mysql_cb_log.h index 4f31c2a90e..7f568aec49 100644 --- a/src/hooks/dhcp/mysql_cb/mysql_cb_log.h +++ b/src/hooks/dhcp/mysql_cb/mysql_cb_log.h @@ -1,4 +1,4 @@ -// Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2019 Internet Systems Consortium, Inc. ("ISC") // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/hooks/dhcp/mysql_cb/mysql_cb_messages.cc b/src/hooks/dhcp/mysql_cb/mysql_cb_messages.cc index 296d2d6d3b..c6e2592d5f 100644 --- a/src/hooks/dhcp/mysql_cb/mysql_cb_messages.cc +++ b/src/hooks/dhcp/mysql_cb/mysql_cb_messages.cc @@ -1,4 +1,4 @@ -// File created from ../../../../src/hooks/dhcp/mysql_cb/mysql_cb_messages.mes on Thu May 09 2019 12:32 +// File created from ../../../../src/hooks/dhcp/mysql_cb/mysql_cb_messages.mes on Thu May 16 2019 09:34 #include #include @@ -55,29 +55,49 @@ extern const isc::log::MessageID MYSQL_CB_DELETE_SHARED_NETWORK_OPTION6 = "MYSQL extern const isc::log::MessageID MYSQL_CB_DELETE_SHARED_NETWORK_SUBNETS4 = "MYSQL_CB_DELETE_SHARED_NETWORK_SUBNETS4"; extern const isc::log::MessageID MYSQL_CB_DELETE_SHARED_NETWORK_SUBNETS6 = "MYSQL_CB_DELETE_SHARED_NETWORK_SUBNETS6"; extern const isc::log::MessageID MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS4 = "MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS4"; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS4_RESULT = "MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS4_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS6 = "MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS6"; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS6_RESULT = "MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS6_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_ALL_OPTIONS4 = "MYSQL_CB_GET_ALL_OPTIONS4"; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_OPTIONS4_RESULT = "MYSQL_CB_GET_ALL_OPTIONS4_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_ALL_OPTIONS6 = "MYSQL_CB_GET_ALL_OPTIONS6"; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_OPTIONS6_RESULT = "MYSQL_CB_GET_ALL_OPTIONS6_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_ALL_OPTION_DEFS4 = "MYSQL_CB_GET_ALL_OPTION_DEFS4"; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_OPTION_DEFS4_RESULT = "MYSQL_CB_GET_ALL_OPTION_DEFS4_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_ALL_OPTION_DEFS6 = "MYSQL_CB_GET_ALL_OPTION_DEFS6"; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_OPTION_DEFS6_RESULT = "MYSQL_CB_GET_ALL_OPTION_DEFS6_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_ALL_SHARED_NETWORKS4 = "MYSQL_CB_GET_ALL_SHARED_NETWORKS4"; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_SHARED_NETWORKS4_RESULT = "MYSQL_CB_GET_ALL_SHARED_NETWORKS4_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_ALL_SHARED_NETWORKS6 = "MYSQL_CB_GET_ALL_SHARED_NETWORKS6"; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_SHARED_NETWORKS6_RESULT = "MYSQL_CB_GET_ALL_SHARED_NETWORKS6_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_ALL_SUBNETS4 = "MYSQL_CB_GET_ALL_SUBNETS4"; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_SUBNETS4_RESULT = "MYSQL_CB_GET_ALL_SUBNETS4_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_ALL_SUBNETS6 = "MYSQL_CB_GET_ALL_SUBNETS6"; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_SUBNETS6_RESULT = "MYSQL_CB_GET_ALL_SUBNETS6_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_GLOBAL_PARAMETER4 = "MYSQL_CB_GET_GLOBAL_PARAMETER4"; extern const isc::log::MessageID MYSQL_CB_GET_GLOBAL_PARAMETER6 = "MYSQL_CB_GET_GLOBAL_PARAMETER6"; extern const isc::log::MessageID MYSQL_CB_GET_HOST4 = "MYSQL_CB_GET_HOST4"; extern const isc::log::MessageID MYSQL_CB_GET_HOST6 = "MYSQL_CB_GET_HOST6"; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS4 = "MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS4"; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS4_RESULT = "MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS4_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS6 = "MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS6"; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS6_RESULT = "MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS6_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_OPTIONS4 = "MYSQL_CB_GET_MODIFIED_OPTIONS4"; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_OPTIONS4_RESULT = "MYSQL_CB_GET_MODIFIED_OPTIONS4_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_OPTIONS6 = "MYSQL_CB_GET_MODIFIED_OPTIONS6"; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_OPTIONS6_RESULT = "MYSQL_CB_GET_MODIFIED_OPTIONS6_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_OPTION_DEFS4 = "MYSQL_CB_GET_MODIFIED_OPTION_DEFS4"; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_OPTION_DEFS4_RESULT = "MYSQL_CB_GET_MODIFIED_OPTION_DEFS4_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_OPTION_DEFS6 = "MYSQL_CB_GET_MODIFIED_OPTION_DEFS6"; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_OPTION_DEFS6_RESULT = "MYSQL_CB_GET_MODIFIED_OPTION_DEFS6_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS4 = "MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS4"; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS4_RESULT = "MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS4_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS6 = "MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS6"; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS6_RESULT = "MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS6_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_SUBNETS4 = "MYSQL_CB_GET_MODIFIED_SUBNETS4"; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_SUBNETS4_RESULT = "MYSQL_CB_GET_MODIFIED_SUBNETS4_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_SUBNETS6 = "MYSQL_CB_GET_MODIFIED_SUBNETS6"; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_SUBNETS6_RESULT = "MYSQL_CB_GET_MODIFIED_SUBNETS6_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_OPTION4 = "MYSQL_CB_GET_OPTION4"; extern const isc::log::MessageID MYSQL_CB_GET_OPTION6 = "MYSQL_CB_GET_OPTION6"; extern const isc::log::MessageID MYSQL_CB_GET_OPTION_DEF4 = "MYSQL_CB_GET_OPTION_DEF4"; @@ -85,11 +105,15 @@ extern const isc::log::MessageID MYSQL_CB_GET_OPTION_DEF6 = "MYSQL_CB_GET_OPTION extern const isc::log::MessageID MYSQL_CB_GET_PORT4 = "MYSQL_CB_GET_PORT4"; extern const isc::log::MessageID MYSQL_CB_GET_PORT6 = "MYSQL_CB_GET_PORT6"; extern const isc::log::MessageID MYSQL_CB_GET_RECENT_AUDIT_ENTRIES4 = "MYSQL_CB_GET_RECENT_AUDIT_ENTRIES4"; +extern const isc::log::MessageID MYSQL_CB_GET_RECENT_AUDIT_ENTRIES4_RESULT = "MYSQL_CB_GET_RECENT_AUDIT_ENTRIES4_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_RECENT_AUDIT_ENTRIES6 = "MYSQL_CB_GET_RECENT_AUDIT_ENTRIES6"; +extern const isc::log::MessageID MYSQL_CB_GET_RECENT_AUDIT_ENTRIES6_RESULT = "MYSQL_CB_GET_RECENT_AUDIT_ENTRIES6_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_SHARED_NETWORK4 = "MYSQL_CB_GET_SHARED_NETWORK4"; extern const isc::log::MessageID MYSQL_CB_GET_SHARED_NETWORK6 = "MYSQL_CB_GET_SHARED_NETWORK6"; extern const isc::log::MessageID MYSQL_CB_GET_SHARED_NETWORK_SUBNETS4 = "MYSQL_CB_GET_SHARED_NETWORK_SUBNETS4"; +extern const isc::log::MessageID MYSQL_CB_GET_SHARED_NETWORK_SUBNETS4_RESULT = "MYSQL_CB_GET_SHARED_NETWORK_SUBNETS4_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_SHARED_NETWORK_SUBNETS6 = "MYSQL_CB_GET_SHARED_NETWORK_SUBNETS6"; +extern const isc::log::MessageID MYSQL_CB_GET_SHARED_NETWORK_SUBNETS6_RESULT = "MYSQL_CB_GET_SHARED_NETWORK_SUBNETS6_RESULT"; extern const isc::log::MessageID MYSQL_CB_GET_SUBNET4_BY_PREFIX = "MYSQL_CB_GET_SUBNET4_BY_PREFIX"; extern const isc::log::MessageID MYSQL_CB_GET_SUBNET4_BY_SUBNET_ID = "MYSQL_CB_GET_SUBNET4_BY_SUBNET_ID"; extern const isc::log::MessageID MYSQL_CB_GET_SUBNET6_BY_PREFIX = "MYSQL_CB_GET_SUBNET6_BY_PREFIX"; @@ -108,100 +132,124 @@ extern const isc::log::MessageID MYSQL_CB_UNREGISTER_BACKEND_TYPE6 = "MYSQL_CB_U namespace { const char* values[] = { - "MYSQL_CB_CREATE_UPDATE_BY_POOL_OPTION4", "create or update MySQL CB option4 pool start %1 pool end %2", - "MYSQL_CB_CREATE_UPDATE_BY_POOL_OPTION6", "create or update MySQL CB option6 pool start %1 pool end %2", - "MYSQL_CB_CREATE_UPDATE_BY_PREFIX_OPTION6", "create or update MySQL CB option6 prefix %1 prefix len %2", - "MYSQL_CB_CREATE_UPDATE_BY_SUBNET_ID_OPTION4", "create or update MySQL CB option4 by subnet id %1", - "MYSQL_CB_CREATE_UPDATE_BY_SUBNET_ID_OPTION6", "create or update MySQL CB option6 by subnet id %1", - "MYSQL_CB_CREATE_UPDATE_GLOBAL_PARAMETER4", "create or update MySQL CB global parameter4 %1", - "MYSQL_CB_CREATE_UPDATE_GLOBAL_PARAMETER6", "create or update MySQL CB global parameter6 %1", - "MYSQL_CB_CREATE_UPDATE_OPTION4", "create or update MySQL CB option4", - "MYSQL_CB_CREATE_UPDATE_OPTION6", "create or update MySQL CB option6", - "MYSQL_CB_CREATE_UPDATE_OPTION_DEF4", "create or update MySQL CB option definition4 %1 code %2", - "MYSQL_CB_CREATE_UPDATE_OPTION_DEF6", "create or update MySQL CB option definition6 %1 code %2", - "MYSQL_CB_CREATE_UPDATE_SHARED_NETWORK4", "create or update MySQL CB shared network4 %1", - "MYSQL_CB_CREATE_UPDATE_SHARED_NETWORK6", "create or update MySQL CB shared network6 %1", - "MYSQL_CB_CREATE_UPDATE_SHARED_NETWORK_OPTION4", "create or update MySQL CB shared network %1 option4", - "MYSQL_CB_CREATE_UPDATE_SHARED_NETWORK_OPTION6", "create or update MySQL CB shared network %1 option6", - "MYSQL_CB_CREATE_UPDATE_SUBNET4", "create or update MySQL CB subnet4 %1", - "MYSQL_CB_CREATE_UPDATE_SUBNET6", "create or update MySQL CB subnet6 %1", + "MYSQL_CB_CREATE_UPDATE_BY_POOL_OPTION4", "create or update MySQL CB option pool start: %1 pool end: %2", + "MYSQL_CB_CREATE_UPDATE_BY_POOL_OPTION6", "create or update MySQL CB option pool start: %1 pool end: %2", + "MYSQL_CB_CREATE_UPDATE_BY_PREFIX_OPTION6", "create or update MySQL CB option prefix: %1 prefix len: %2", + "MYSQL_CB_CREATE_UPDATE_BY_SUBNET_ID_OPTION4", "create or update MySQL CB option by subnet id: %1", + "MYSQL_CB_CREATE_UPDATE_BY_SUBNET_ID_OPTION6", "create or update MySQL CB option by subnet id: %1", + "MYSQL_CB_CREATE_UPDATE_GLOBAL_PARAMETER4", "create or update MySQL CB global parameter: %1", + "MYSQL_CB_CREATE_UPDATE_GLOBAL_PARAMETER6", "create or update MySQL CB global parameter: %1", + "MYSQL_CB_CREATE_UPDATE_OPTION4", "create or update MySQL CB option", + "MYSQL_CB_CREATE_UPDATE_OPTION6", "create or update MySQL CB option", + "MYSQL_CB_CREATE_UPDATE_OPTION_DEF4", "create or update MySQL CB option definition: %1 code: %2", + "MYSQL_CB_CREATE_UPDATE_OPTION_DEF6", "create or update MySQL CB option definition: %1 code: %2", + "MYSQL_CB_CREATE_UPDATE_SHARED_NETWORK4", "create or update MySQL CB shared network: %1", + "MYSQL_CB_CREATE_UPDATE_SHARED_NETWORK6", "create or update MySQL CB shared network: %1", + "MYSQL_CB_CREATE_UPDATE_SHARED_NETWORK_OPTION4", "create or update MySQL CB shared network: %1 option", + "MYSQL_CB_CREATE_UPDATE_SHARED_NETWORK_OPTION6", "create or update MySQL CB shared network: %1 option", + "MYSQL_CB_CREATE_UPDATE_SUBNET4", "create or update MySQL CB subnet: %1", + "MYSQL_CB_CREATE_UPDATE_SUBNET6", "create or update MySQL CB subnet: %1", "MYSQL_CB_DEINIT_OK", "unloading MYSQAL CB hooks library successful", - "MYSQL_CB_DELETE_ALL_GLOBAL_PARAMETERS4", "delete MySQL CB all global parameters4", - "MYSQL_CB_DELETE_ALL_GLOBAL_PARAMETERS6", "delete MySQL CB all global parameters6", - "MYSQL_CB_DELETE_ALL_OPTION_DEFS4", "delete MySQL CB all option definitions4", - "MYSQL_CB_DELETE_ALL_OPTION_DEFS6", "delete MySQL CB all option definitions6", - "MYSQL_CB_DELETE_ALL_SHARED_NETWORKS4", "delete MySQL CB all shared networks4", - "MYSQL_CB_DELETE_ALL_SHARED_NETWORKS6", "delete MySQL CB all shared networks6", - "MYSQL_CB_DELETE_ALL_SUBNETS4", "delete MySQL CB all subnets4", - "MYSQL_CB_DELETE_ALL_SUBNETS6", "delete MySQL CB all subnets6", - "MYSQL_CB_DELETE_BY_POOL_OPTION4", "delete MySQL CB pool start %1 pool end %2 option4 code %3 space %4", - "MYSQL_CB_DELETE_BY_POOL_OPTION6", "delete MySQL CB pool start %1 pool end %2 option6 code %3 space %4", - "MYSQL_CB_DELETE_BY_POOL_PREFIX_OPTION6", "delete MySQL CB prefix %1 prefix len %2 option6 code %3 space %4", - "MYSQL_CB_DELETE_BY_PREFIX_SUBNET4", "delete MySQL CB subnet4 by prefix %1", - "MYSQL_CB_DELETE_BY_PREFIX_SUBNET6", "delete MySQL CB subnet6 by prefix %1", - "MYSQL_CB_DELETE_BY_SUBNET_ID_OPTION4", "delete MySQL CB by subnet id %1 option4 code %2 space %3", - "MYSQL_CB_DELETE_BY_SUBNET_ID_OPTION6", "delete MySQL CB by subnet id %1 option6 code %2 space %3", - "MYSQL_CB_DELETE_BY_SUBNET_ID_SUBNET4", "delete MySQL CB subnet4 by subnet id %1", - "MYSQL_CB_DELETE_BY_SUBNET_ID_SUBNET6", "delete MySQL CB subnet6 by subnet id %1", - "MYSQL_CB_DELETE_GLOBAL_PARAMETER4", "delete MySQL CB global parameter4 %1", - "MYSQL_CB_DELETE_GLOBAL_PARAMETER6", "delete MySQL CB global parameter6 %1", - "MYSQL_CB_DELETE_OPTION4", "delete MySQL CB option4 code %1 space %2", - "MYSQL_CB_DELETE_OPTION6", "delete MySQL CB option6 code %1 space %2", - "MYSQL_CB_DELETE_OPTION_DEF4", "delete MySQL CB option definition4 code %1 space %2", - "MYSQL_CB_DELETE_OPTION_DEF6", "delete MySQL CB option definition6 code %1 space %2", - "MYSQL_CB_DELETE_SHARED_NETWORK4", "delete MySQL CB shared network4 %1", - "MYSQL_CB_DELETE_SHARED_NETWORK6", "delete MySQL CB shared network6 %1", - "MYSQL_CB_DELETE_SHARED_NETWORK_OPTION4", "delete MySQL CB shared network %1 option4 code %2 space %3", - "MYSQL_CB_DELETE_SHARED_NETWORK_OPTION6", "delete MySQL CB shared network %1 option6 code %2 space %3", - "MYSQL_CB_DELETE_SHARED_NETWORK_SUBNETS4", "delete MySQL CB shared network %1 subnets4", - "MYSQL_CB_DELETE_SHARED_NETWORK_SUBNETS6", "delete MySQL CB shared network %1 subnets6", - "MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS4", "retrieving MySQL CB all global parameters4", - "MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS6", "retrieving MySQL CB all global parameters6", - "MYSQL_CB_GET_ALL_OPTIONS4", "retrieving MySQL CB all options4", - "MYSQL_CB_GET_ALL_OPTIONS6", "retrieving MySQL CB all options6", - "MYSQL_CB_GET_ALL_OPTION_DEFS4", "retrieving MySQL CB all option definitions4", - "MYSQL_CB_GET_ALL_OPTION_DEFS6", "retrieving MySQL CB all option definitions6", - "MYSQL_CB_GET_ALL_SHARED_NETWORKS4", "retrieving MySQL CB all shared networks4", - "MYSQL_CB_GET_ALL_SHARED_NETWORKS6", "retrieving MySQL CB all shared networks6", - "MYSQL_CB_GET_ALL_SUBNETS4", "retrieving all MySQL CB subnets4", - "MYSQL_CB_GET_ALL_SUBNETS6", "retrieving all MySQL CB subnets6", - "MYSQL_CB_GET_GLOBAL_PARAMETER4", "retrieving MySQL CB global parameter4 %1", - "MYSQL_CB_GET_GLOBAL_PARAMETER6", "retrieving MySQL CB global parameter6 %1", - "MYSQL_CB_GET_HOST4", "get MySQL CB host4", - "MYSQL_CB_GET_HOST6", "get MySQL CB host6", - "MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS4", "retrieving MySQL CB modified global parameters4", - "MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS6", "retrieving MySQL CB modified global parameters6", - "MYSQL_CB_GET_MODIFIED_OPTIONS4", "retrieving MySQL CB modified options4", - "MYSQL_CB_GET_MODIFIED_OPTIONS6", "retrieving MySQL CB modified options6", - "MYSQL_CB_GET_MODIFIED_OPTION_DEFS4", "retrieving MySQL CB modified option definitions4", - "MYSQL_CB_GET_MODIFIED_OPTION_DEFS6", "retrieving MySQL CB modified option definitions6", - "MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS4", "retrieving MySQL CB modified shared networks4", - "MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS6", "retrieving MySQL CB modified shared networks6", - "MYSQL_CB_GET_MODIFIED_SUBNETS4", "retrieving modified MySQL CB subnets4", - "MYSQL_CB_GET_MODIFIED_SUBNETS6", "retrieving modified MySQL CB subnets6", - "MYSQL_CB_GET_OPTION4", "retrieving MySQL CB option4 code %1 space %2", - "MYSQL_CB_GET_OPTION6", "retrieving MySQL CB option6 code %1 space %2", - "MYSQL_CB_GET_OPTION_DEF4", "retrieving MySQL CB option definition4 code %1 space %2", - "MYSQL_CB_GET_OPTION_DEF6", "retrieving MySQL CB option definition6 code %1 space %2", - "MYSQL_CB_GET_PORT4", "get MySQL CB port4", - "MYSQL_CB_GET_PORT6", "get MySQL CB port6", - "MYSQL_CB_GET_RECENT_AUDIT_ENTRIES4", "retrieving MySQL CB audit entries4", - "MYSQL_CB_GET_RECENT_AUDIT_ENTRIES6", "retrieving MySQL CB audit entries6", - "MYSQL_CB_GET_SHARED_NETWORK4", "retrieving MySQL CB shared network4 %1", - "MYSQL_CB_GET_SHARED_NETWORK6", "retrieving MySQL CB shared network6 %1", - "MYSQL_CB_GET_SHARED_NETWORK_SUBNETS4", "retrieving MySQL CB shared network %1 subnets4", - "MYSQL_CB_GET_SHARED_NETWORK_SUBNETS6", "retrieving MySQL CB shared network %1 subnets6", - "MYSQL_CB_GET_SUBNET4_BY_PREFIX", "retrieving MySQL CB subnet4 by prefix %1", - "MYSQL_CB_GET_SUBNET4_BY_SUBNET_ID", "retrieving MySQL CB subnet4 by subnet id %1", - "MYSQL_CB_GET_SUBNET6_BY_PREFIX", "retrieving MySQL CB subnet6 by prefix %1", - "MYSQL_CB_GET_SUBNET6_BY_SUBNET_ID", "retrieving MySQL CB subnet6 by subnet id %1", - "MYSQL_CB_GET_TYPE4", "get MySQL CB type4", - "MYSQL_CB_GET_TYPE6", "get MySQL CB type6", + "MYSQL_CB_DELETE_ALL_GLOBAL_PARAMETERS4", "delete MySQL CB all global parameters", + "MYSQL_CB_DELETE_ALL_GLOBAL_PARAMETERS6", "delete MySQL CB all global parameters", + "MYSQL_CB_DELETE_ALL_OPTION_DEFS4", "delete MySQL CB all option definitions", + "MYSQL_CB_DELETE_ALL_OPTION_DEFS6", "delete MySQL CB all option definitions", + "MYSQL_CB_DELETE_ALL_SHARED_NETWORKS4", "delete MySQL CB all shared networks", + "MYSQL_CB_DELETE_ALL_SHARED_NETWORKS6", "delete MySQL CB all shared networks", + "MYSQL_CB_DELETE_ALL_SUBNETS4", "delete MySQL CB all subnets", + "MYSQL_CB_DELETE_ALL_SUBNETS6", "delete MySQL CB all subnets", + "MYSQL_CB_DELETE_BY_POOL_OPTION4", "delete MySQL CB pool start: %1 pool end: %2 option code: %3 space: %4", + "MYSQL_CB_DELETE_BY_POOL_OPTION6", "delete MySQL CB pool start: %1 pool end: %2 option code: %3 space: %4", + "MYSQL_CB_DELETE_BY_POOL_PREFIX_OPTION6", "delete MySQL CB prefix: %1 prefix len: %2 option code: %3 space: %4", + "MYSQL_CB_DELETE_BY_PREFIX_SUBNET4", "delete MySQL CB subnet by prefix: %1", + "MYSQL_CB_DELETE_BY_PREFIX_SUBNET6", "delete MySQL CB subnet by prefix: %1", + "MYSQL_CB_DELETE_BY_SUBNET_ID_OPTION4", "delete MySQL CB by subnet id: %1 option code: %2 space: %3", + "MYSQL_CB_DELETE_BY_SUBNET_ID_OPTION6", "delete MySQL CB by subnet id: %1 option code: %2 space: %3", + "MYSQL_CB_DELETE_BY_SUBNET_ID_SUBNET4", "delete MySQL CB subnet by subnet id: %1", + "MYSQL_CB_DELETE_BY_SUBNET_ID_SUBNET6", "delete MySQL CB subnet by subnet id: %1", + "MYSQL_CB_DELETE_GLOBAL_PARAMETER4", "delete MySQL CB global parameter: %1", + "MYSQL_CB_DELETE_GLOBAL_PARAMETER6", "delete MySQL CB global parameter: %1", + "MYSQL_CB_DELETE_OPTION4", "delete MySQL CB option code: %1 space: %2", + "MYSQL_CB_DELETE_OPTION6", "delete MySQL CB option code: %1 space: %2", + "MYSQL_CB_DELETE_OPTION_DEF4", "delete MySQL CB option definition code: %1 space: %2", + "MYSQL_CB_DELETE_OPTION_DEF6", "delete MySQL CB option definition code: %1 space: %2", + "MYSQL_CB_DELETE_SHARED_NETWORK4", "delete MySQL CB shared network: %1", + "MYSQL_CB_DELETE_SHARED_NETWORK6", "delete MySQL CB shared network: %1", + "MYSQL_CB_DELETE_SHARED_NETWORK_OPTION4", "delete MySQL CB shared network: %1 option code: %2 space: %3", + "MYSQL_CB_DELETE_SHARED_NETWORK_OPTION6", "delete MySQL CB shared network: %1 option code: %2 space: %3", + "MYSQL_CB_DELETE_SHARED_NETWORK_SUBNETS4", "delete MySQL CB shared network: %1 subnets", + "MYSQL_CB_DELETE_SHARED_NETWORK_SUBNETS6", "delete MySQL CB shared network: %1 subnets", + "MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS4", "retrieving MySQL CB all global parameters", + "MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS4_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS6", "retrieving MySQL CB all global parameters", + "MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS6_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_ALL_OPTIONS4", "retrieving MySQL CB all options", + "MYSQL_CB_GET_ALL_OPTIONS4_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_ALL_OPTIONS6", "retrieving MySQL CB all options", + "MYSQL_CB_GET_ALL_OPTIONS6_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_ALL_OPTION_DEFS4", "retrieving MySQL CB all option definitions", + "MYSQL_CB_GET_ALL_OPTION_DEFS4_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_ALL_OPTION_DEFS6", "retrieving MySQL CB all option definitions", + "MYSQL_CB_GET_ALL_OPTION_DEFS6_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_ALL_SHARED_NETWORKS4", "retrieving MySQL CB all shared networks", + "MYSQL_CB_GET_ALL_SHARED_NETWORKS4_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_ALL_SHARED_NETWORKS6", "retrieving MySQL CB all shared networks", + "MYSQL_CB_GET_ALL_SHARED_NETWORKS6_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_ALL_SUBNETS4", "retrieving all MySQL CB subnets", + "MYSQL_CB_GET_ALL_SUBNETS4_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_ALL_SUBNETS6", "retrieving all MySQL CB subnets", + "MYSQL_CB_GET_ALL_SUBNETS6_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_GLOBAL_PARAMETER4", "retrieving MySQL CB global parameter: %1", + "MYSQL_CB_GET_GLOBAL_PARAMETER6", "retrieving MySQL CB global parameter: %1", + "MYSQL_CB_GET_HOST4", "get MySQL CB host", + "MYSQL_CB_GET_HOST6", "get MySQL CB host", + "MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS4", "retrieving MySQL CB modified global parameters from: %1", + "MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS4_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS6", "retrieving MySQL CB modified global parameters from: %1", + "MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS6_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_MODIFIED_OPTIONS4", "retrieving MySQL CB modified options from: %1", + "MYSQL_CB_GET_MODIFIED_OPTIONS4_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_MODIFIED_OPTIONS6", "retrieving MySQL CB modified options from: %1", + "MYSQL_CB_GET_MODIFIED_OPTIONS6_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_MODIFIED_OPTION_DEFS4", "retrieving MySQL CB modified option definitions from: %1", + "MYSQL_CB_GET_MODIFIED_OPTION_DEFS4_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_MODIFIED_OPTION_DEFS6", "retrieving MySQL CB modified option definitions from: %1", + "MYSQL_CB_GET_MODIFIED_OPTION_DEFS6_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS4", "retrieving MySQL CB modified shared networks from: %1", + "MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS4_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS6", "retrieving MySQL CB modified shared networks from: %1", + "MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS6_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_MODIFIED_SUBNETS4", "retrieving modified MySQL CB subnets from: %1", + "MYSQL_CB_GET_MODIFIED_SUBNETS4_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_MODIFIED_SUBNETS6", "retrieving modified MySQL CB subnets from: %1", + "MYSQL_CB_GET_MODIFIED_SUBNETS6_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_OPTION4", "retrieving MySQL CB option code: %1 space: %2", + "MYSQL_CB_GET_OPTION6", "retrieving MySQL CB option code: %1 space: %2", + "MYSQL_CB_GET_OPTION_DEF4", "retrieving MySQL CB option definition code: %1 space: %2", + "MYSQL_CB_GET_OPTION_DEF6", "retrieving MySQL CB option definition code: %1 space: %2", + "MYSQL_CB_GET_PORT4", "get MySQL CB port", + "MYSQL_CB_GET_PORT6", "get MySQL CB port", + "MYSQL_CB_GET_RECENT_AUDIT_ENTRIES4", "retrieving MySQL CB audit entries", + "MYSQL_CB_GET_RECENT_AUDIT_ENTRIES4_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_RECENT_AUDIT_ENTRIES6", "retrieving MySQL CB audit entries", + "MYSQL_CB_GET_RECENT_AUDIT_ENTRIES6_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_SHARED_NETWORK4", "retrieving MySQL CB shared network: %1", + "MYSQL_CB_GET_SHARED_NETWORK6", "retrieving MySQL CB shared network: %1", + "MYSQL_CB_GET_SHARED_NETWORK_SUBNETS4", "retrieving MySQL CB shared network: %1 subnets", + "MYSQL_CB_GET_SHARED_NETWORK_SUBNETS4_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_SHARED_NETWORK_SUBNETS6", "retrieving MySQL CB shared network: %1 subnets", + "MYSQL_CB_GET_SHARED_NETWORK_SUBNETS6_RESULT", "retrieving: %1 elements", + "MYSQL_CB_GET_SUBNET4_BY_PREFIX", "retrieving MySQL CB subnet by prefix: %1", + "MYSQL_CB_GET_SUBNET4_BY_SUBNET_ID", "retrieving MySQL CB subnet by subnet id: %1", + "MYSQL_CB_GET_SUBNET6_BY_PREFIX", "retrieving MySQL CB subnet by prefix: %1", + "MYSQL_CB_GET_SUBNET6_BY_SUBNET_ID", "retrieving MySQL CB subnet by subnet id: %1", + "MYSQL_CB_GET_TYPE4", "get MySQL CB type", + "MYSQL_CB_GET_TYPE6", "get MySQL CB type", "MYSQL_CB_INIT_OK", "loading MYSQL CB hooks library successful", - "MYSQL_CB_REGISTER_BACKEND_TYPE4", "register MySQL CB backend4", - "MYSQL_CB_REGISTER_BACKEND_TYPE6", "register MySQL CB backend6", - "MYSQL_CB_UNREGISTER_BACKEND_TYPE4", "unregister MySQL CB backend4", - "MYSQL_CB_UNREGISTER_BACKEND_TYPE6", "unregister MySQL CB backend6", + "MYSQL_CB_REGISTER_BACKEND_TYPE4", "register MySQL CB backend", + "MYSQL_CB_REGISTER_BACKEND_TYPE6", "register MySQL CB backend", + "MYSQL_CB_UNREGISTER_BACKEND_TYPE4", "unregister MySQL CB backend", + "MYSQL_CB_UNREGISTER_BACKEND_TYPE6", "unregister MySQL CB backend", NULL }; diff --git a/src/hooks/dhcp/mysql_cb/mysql_cb_messages.h b/src/hooks/dhcp/mysql_cb/mysql_cb_messages.h index 42dcccdc76..442788610f 100644 --- a/src/hooks/dhcp/mysql_cb/mysql_cb_messages.h +++ b/src/hooks/dhcp/mysql_cb/mysql_cb_messages.h @@ -1,4 +1,4 @@ -// File created from ../../../../src/hooks/dhcp/mysql_cb/mysql_cb_messages.mes on Thu May 09 2019 12:32 +// File created from ../../../../src/hooks/dhcp/mysql_cb/mysql_cb_messages.mes on Thu May 16 2019 09:34 #ifndef MYSQL_CB_MESSAGES_H #define MYSQL_CB_MESSAGES_H @@ -56,29 +56,49 @@ extern const isc::log::MessageID MYSQL_CB_DELETE_SHARED_NETWORK_OPTION6; extern const isc::log::MessageID MYSQL_CB_DELETE_SHARED_NETWORK_SUBNETS4; extern const isc::log::MessageID MYSQL_CB_DELETE_SHARED_NETWORK_SUBNETS6; extern const isc::log::MessageID MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS4; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS4_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS6; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS6_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_ALL_OPTIONS4; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_OPTIONS4_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_ALL_OPTIONS6; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_OPTIONS6_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_ALL_OPTION_DEFS4; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_OPTION_DEFS4_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_ALL_OPTION_DEFS6; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_OPTION_DEFS6_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_ALL_SHARED_NETWORKS4; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_SHARED_NETWORKS4_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_ALL_SHARED_NETWORKS6; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_SHARED_NETWORKS6_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_ALL_SUBNETS4; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_SUBNETS4_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_ALL_SUBNETS6; +extern const isc::log::MessageID MYSQL_CB_GET_ALL_SUBNETS6_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_GLOBAL_PARAMETER4; extern const isc::log::MessageID MYSQL_CB_GET_GLOBAL_PARAMETER6; extern const isc::log::MessageID MYSQL_CB_GET_HOST4; extern const isc::log::MessageID MYSQL_CB_GET_HOST6; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS4; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS4_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS6; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS6_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_OPTIONS4; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_OPTIONS4_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_OPTIONS6; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_OPTIONS6_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_OPTION_DEFS4; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_OPTION_DEFS4_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_OPTION_DEFS6; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_OPTION_DEFS6_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS4; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS4_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS6; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS6_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_SUBNETS4; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_SUBNETS4_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_SUBNETS6; +extern const isc::log::MessageID MYSQL_CB_GET_MODIFIED_SUBNETS6_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_OPTION4; extern const isc::log::MessageID MYSQL_CB_GET_OPTION6; extern const isc::log::MessageID MYSQL_CB_GET_OPTION_DEF4; @@ -86,11 +106,15 @@ extern const isc::log::MessageID MYSQL_CB_GET_OPTION_DEF6; extern const isc::log::MessageID MYSQL_CB_GET_PORT4; extern const isc::log::MessageID MYSQL_CB_GET_PORT6; extern const isc::log::MessageID MYSQL_CB_GET_RECENT_AUDIT_ENTRIES4; +extern const isc::log::MessageID MYSQL_CB_GET_RECENT_AUDIT_ENTRIES4_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_RECENT_AUDIT_ENTRIES6; +extern const isc::log::MessageID MYSQL_CB_GET_RECENT_AUDIT_ENTRIES6_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_SHARED_NETWORK4; extern const isc::log::MessageID MYSQL_CB_GET_SHARED_NETWORK6; extern const isc::log::MessageID MYSQL_CB_GET_SHARED_NETWORK_SUBNETS4; +extern const isc::log::MessageID MYSQL_CB_GET_SHARED_NETWORK_SUBNETS4_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_SHARED_NETWORK_SUBNETS6; +extern const isc::log::MessageID MYSQL_CB_GET_SHARED_NETWORK_SUBNETS6_RESULT; extern const isc::log::MessageID MYSQL_CB_GET_SUBNET4_BY_PREFIX; extern const isc::log::MessageID MYSQL_CB_GET_SUBNET4_BY_SUBNET_ID; extern const isc::log::MessageID MYSQL_CB_GET_SUBNET6_BY_PREFIX; diff --git a/src/hooks/dhcp/mysql_cb/mysql_cb_messages.mes b/src/hooks/dhcp/mysql_cb/mysql_cb_messages.mes index 20d5441b02..f08c1b98fd 100644 --- a/src/hooks/dhcp/mysql_cb/mysql_cb_messages.mes +++ b/src/hooks/dhcp/mysql_cb/mysql_cb_messages.mes @@ -10,278 +10,350 @@ library has been loaded successfully. This informational message indicates that the MySQL Configuration Backend hooks library has been unloaded successfully. -% MYSQL_CB_GET_SUBNET4_BY_PREFIX retrieving MySQL CB subnet by prefix %1 -Retrieve MySQL CB subnet by prefix +% MYSQL_CB_GET_SUBNET4_BY_PREFIX retrieving MySQL CB subnet by prefix: %1 +Debug message issued when triggered an action to retrieve MySQL CB subnet by prefix -% MYSQL_CB_GET_SUBNET4_BY_SUBNET_ID retrieving MySQL CB subnet by subnet id %1 -Retrieve MySQL CB subnet by subnet id +% MYSQL_CB_GET_SUBNET4_BY_SUBNET_ID retrieving MySQL CB subnet by subnet id: %1 +Debug message issued when triggered an action to retrieve MySQL CB subnet by subnet id % MYSQL_CB_GET_ALL_SUBNETS4 retrieving all MySQL CB subnets -Retrieve MySQL CB all subnets +Debug message issued when triggered an action to retrieve MySQL CB all subnets -% MYSQL_CB_GET_MODIFIED_SUBNETS4 retrieving modified MySQL CB subnets -Retrieve MySQL CB modified subnets +% MYSQL_CB_GET_ALL_SUBNETS4_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB all subnets -% MYSQL_CB_GET_SHARED_NETWORK_SUBNETS4 retrieving MySQL CB shared network %1 subnets -Retrieve MySQL CB shared network subnets +% MYSQL_CB_GET_MODIFIED_SUBNETS4 retrieving modified MySQL CB subnets from: %1 +Debug message issued when triggered an action to retrieve MySQL CB modified subnets from specified time -% MYSQL_CB_GET_SHARED_NETWORK4 retrieving MySQL CB shared network %1 -Retrieve MySQL CB shared network +% MYSQL_CB_GET_MODIFIED_SUBNETS4_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB modified subnets from specified time + +% MYSQL_CB_GET_SHARED_NETWORK_SUBNETS4 retrieving MySQL CB shared network: %1 subnets +Debug message issued when triggered an action to retrieve MySQL CB shared network subnets + +% MYSQL_CB_GET_SHARED_NETWORK_SUBNETS4_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB shared network subnets + +% MYSQL_CB_GET_SHARED_NETWORK4 retrieving MySQL CB shared network: %1 +Debug message issued when triggered an action to retrieve MySQL CB shared network % MYSQL_CB_GET_ALL_SHARED_NETWORKS4 retrieving MySQL CB all shared networks -Retrieve MySQL CB all shared networks +Debug message issued when triggered an action to retrieve MySQL CB all shared networks -% MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS4 retrieving MySQL CB modified shared networks -Retrieve MySQL CB modified shared networks +% MYSQL_CB_GET_ALL_SHARED_NETWORKS4_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB all shared networks -% MYSQL_CB_GET_OPTION_DEF4 retrieving MySQL CB option definition code %1 space %2 -Retrieve MySQL CB option definition +% MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS4 retrieving MySQL CB modified shared networks from: %1 +Debug message issued when triggered an action to retrieve MySQL CB modified shared networks from specified time + +% MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS4_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB modified shared networks from specified time + +% MYSQL_CB_GET_OPTION_DEF4 retrieving MySQL CB option definition code: %1 space: %2 +Debug message issued when triggered an action to retrieve MySQL CB option definition % MYSQL_CB_GET_ALL_OPTION_DEFS4 retrieving MySQL CB all option definitions -Retrieve MySQL CB all option definitions +Debug message issued when triggered an action to retrieve MySQL CB all option definitions + +% MYSQL_CB_GET_ALL_OPTION_DEFS4_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB all option definitions -% MYSQL_CB_GET_MODIFIED_OPTION_DEFS4 retrieving MySQL CB modified option definitions -Retrieve MySQL CB modified option definitions +% MYSQL_CB_GET_MODIFIED_OPTION_DEFS4 retrieving MySQL CB modified option definitions from: %1 +Debug message issued when triggered an action to retrieve MySQL CB modified option definitions from specified time -% MYSQL_CB_GET_OPTION4 retrieving MySQL CB option code %1 space %2 -Retrieve MySQL CB option +% MYSQL_CB_GET_MODIFIED_OPTION_DEFS4_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB modified option definitions from specified time + +% MYSQL_CB_GET_OPTION4 retrieving MySQL CB option code: %1 space: %2 +Debug message issued when triggered an action to retrieve MySQL CB option % MYSQL_CB_GET_ALL_OPTIONS4 retrieving MySQL CB all options -Retrieve MySQL CB all options +Debug message issued when triggered an action to retrieve MySQL CB all options + +% MYSQL_CB_GET_ALL_OPTIONS4_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB all options + +% MYSQL_CB_GET_MODIFIED_OPTIONS4 retrieving MySQL CB modified options from: %1 +Debug message issued when triggered an action to retrieve MySQL CB modified options from specified time -% MYSQL_CB_GET_MODIFIED_OPTIONS4 retrieving MySQL CB modified options -Retrieve MySQL CB modified options +% MYSQL_CB_GET_MODIFIED_OPTIONS4_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB modified options from specified time -% MYSQL_CB_GET_GLOBAL_PARAMETER4 retrieving MySQL CB global parameter %1 -Retrieve MySQL CB global parameter +% MYSQL_CB_GET_GLOBAL_PARAMETER4 retrieving MySQL CB global parameter: %1 +Debug message issued when triggered an action to retrieve MySQL CB global parameter % MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS4 retrieving MySQL CB all global parameters -Retrieve MySQL CB all global parameters +Debug message issued when triggered an action to retrieve MySQL CB all global parameters -% MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS4 retrieving MySQL CB modified global parameters -Retrieve MySQL CB modified global parameters +% MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS4_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB all global parameters + +% MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS4 retrieving MySQL CB modified global parameters from: %1 +Debug message issued when triggered an action to retrieve MySQL CB modified global parameters from specified time + +% MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS4_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB modified global parameters from specified time % MYSQL_CB_GET_RECENT_AUDIT_ENTRIES4 retrieving MySQL CB audit entries -Retrieve MySQL CB audit entries +Debug message issued when triggered an action to retrieve MySQL CB audit entries + +% MYSQL_CB_GET_RECENT_AUDIT_ENTRIES4_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB audit entries -% MYSQL_CB_CREATE_UPDATE_SUBNET4 create or update MySQL CB subnet %1 -Create or update MySQL CB subnet +% MYSQL_CB_CREATE_UPDATE_SUBNET4 create or update MySQL CB subnet: %1 +Debug message issued when triggered an action to create or update MySQL CB subnet -% MYSQL_CB_CREATE_UPDATE_SHARED_NETWORK4 create or update MySQL CB shared network %1 -Create or update MySQL CB shared network +% MYSQL_CB_CREATE_UPDATE_SHARED_NETWORK4 create or update MySQL CB shared network: %1 +Debug message issued when triggered an action to create or update MySQL CB shared network -% MYSQL_CB_CREATE_UPDATE_OPTION_DEF4 create or update MySQL CB option definition %1 code %2 -Create or update MySQL CB option definition +% MYSQL_CB_CREATE_UPDATE_OPTION_DEF4 create or update MySQL CB option definition: %1 code: %2 +Debug message issued when triggered an action to create or update MySQL CB option definition % MYSQL_CB_CREATE_UPDATE_OPTION4 create or update MySQL CB option -Create or update MySQL CB option +Debug message issued when triggered an action to create or update MySQL CB option -% MYSQL_CB_CREATE_UPDATE_SHARED_NETWORK_OPTION4 create or update MySQL CB shared network %1 option -Create or update MySQL CB shared network option +% MYSQL_CB_CREATE_UPDATE_SHARED_NETWORK_OPTION4 create or update MySQL CB shared network: %1 option +Debug message issued when triggered an action to create or update MySQL CB shared network option -% MYSQL_CB_CREATE_UPDATE_BY_SUBNET_ID_OPTION4 create or update MySQL CB option by subnet id %1 -Create or update MySQL CB option by subnet id +% MYSQL_CB_CREATE_UPDATE_BY_SUBNET_ID_OPTION4 create or update MySQL CB option by subnet id: %1 +Debug message issued when triggered an action to create or update MySQL CB option by subnet id -% MYSQL_CB_CREATE_UPDATE_BY_POOL_OPTION4 create or update MySQL CB option pool start %1 pool end %2 -Create or update MySQL CB option by pool +% MYSQL_CB_CREATE_UPDATE_BY_POOL_OPTION4 create or update MySQL CB option pool start: %1 pool end: %2 +Debug message issued when triggered an action to create or update MySQL CB option by pool -% MYSQL_CB_CREATE_UPDATE_GLOBAL_PARAMETER4 create or update MySQL CB global parameter %1 -Create or update MySQL CB global parameter +% MYSQL_CB_CREATE_UPDATE_GLOBAL_PARAMETER4 create or update MySQL CB global parameter: %1 +Debug message issued when triggered an action to create or update MySQL CB global parameter -% MYSQL_CB_DELETE_BY_PREFIX_SUBNET4 delete MySQL CB subnet by prefix %1 -Delete MySQL CB subnet by prefix +% MYSQL_CB_DELETE_BY_PREFIX_SUBNET4 delete MySQL CB subnet by prefix: %1 +Debug message issued when triggered an action to delete MySQL CB subnet by prefix -% MYSQL_CB_DELETE_BY_SUBNET_ID_SUBNET4 delete MySQL CB subnet by subnet id %1 -Delete MySQL CB subnet by subnet id +% MYSQL_CB_DELETE_BY_SUBNET_ID_SUBNET4 delete MySQL CB subnet by subnet id: %1 +Debug message issued when triggered an action to delete MySQL CB subnet by subnet id % MYSQL_CB_DELETE_ALL_SUBNETS4 delete MySQL CB all subnets -Delete MySQL CB all subnets +Debug message issued when triggered an action to delete MySQL CB all subnets -% MYSQL_CB_DELETE_SHARED_NETWORK_SUBNETS4 delete MySQL CB shared network %1 subnets -Delete MySQL CB shared network subnets +% MYSQL_CB_DELETE_SHARED_NETWORK_SUBNETS4 delete MySQL CB shared network: %1 subnets +Debug message issued when triggered an action to delete MySQL CB shared network subnets -% MYSQL_CB_DELETE_SHARED_NETWORK4 delete MySQL CB shared network %1 -Delete MySQL CB shared network +% MYSQL_CB_DELETE_SHARED_NETWORK4 delete MySQL CB shared network: %1 +Debug message issued when triggered an action to delete MySQL CB shared network % MYSQL_CB_DELETE_ALL_SHARED_NETWORKS4 delete MySQL CB all shared networks -Delete MySQL CB all shared networks +Debug message issued when triggered an action to delete MySQL CB all shared networks -% MYSQL_CB_DELETE_OPTION_DEF4 delete MySQL CB option definition code %1 space %2 -Delete MySQL CB option definition +% MYSQL_CB_DELETE_OPTION_DEF4 delete MySQL CB option definition code: %1 space: %2 +Debug message issued when triggered an action to delete MySQL CB option definition % MYSQL_CB_DELETE_ALL_OPTION_DEFS4 delete MySQL CB all option definitions -Delete MySQL CB all option definitions +Debug message issued when triggered an action to delete MySQL CB all option definitions -% MYSQL_CB_DELETE_OPTION4 delete MySQL CB option code %1 space %2 -Delete MySQL CB option +% MYSQL_CB_DELETE_OPTION4 delete MySQL CB option code: %1 space: %2 +Debug message issued when triggered an action to delete MySQL CB option -% MYSQL_CB_DELETE_SHARED_NETWORK_OPTION4 delete MySQL CB shared network %1 option code %2 space %3 -Delete MySQL CB shared network option +% MYSQL_CB_DELETE_SHARED_NETWORK_OPTION4 delete MySQL CB shared network: %1 option code: %2 space: %3 +Debug message issued when triggered an action to delete MySQL CB shared network option -% MYSQL_CB_DELETE_BY_SUBNET_ID_OPTION4 delete MySQL CB by subnet id %1 option code %2 space %3 -Delete MySQL CB option by subnet id +% MYSQL_CB_DELETE_BY_SUBNET_ID_OPTION4 delete MySQL CB by subnet id: %1 option code: %2 space: %3 +Debug message issued when triggered an action to delete MySQL CB option by subnet id -% MYSQL_CB_DELETE_BY_POOL_OPTION4 delete MySQL CB pool start %1 pool end %2 option code %3 space %4 -Delete MySQL CB option by pool +% MYSQL_CB_DELETE_BY_POOL_OPTION4 delete MySQL CB pool start: %1 pool end: %2 option code: %3 space: %4 +Debug message issued when triggered an action to delete MySQL CB option by pool -% MYSQL_CB_DELETE_GLOBAL_PARAMETER4 delete MySQL CB global parameter %1 -Delete MySQL CB global parameter +% MYSQL_CB_DELETE_GLOBAL_PARAMETER4 delete MySQL CB global parameter: %1 +Debug message issued when triggered an action to delete MySQL CB global parameter % MYSQL_CB_DELETE_ALL_GLOBAL_PARAMETERS4 delete MySQL CB all global parameters -Delete MySQL CB all global parameters +Debug message issued when triggered an action to delete MySQL CB all global parameters % MYSQL_CB_GET_TYPE4 get MySQL CB type -Retrieve MySQL CB type +Debug message issued when triggered an action to retrieve MySQL CB type % MYSQL_CB_GET_HOST4 get MySQL CB host -Retrieve MySQL CB host +Debug message issued when triggered an action to retrieve MySQL CB host % MYSQL_CB_GET_PORT4 get MySQL CB port -Retrieve MySQL CB port +Debug message issued when triggered an action to retrieve MySQL CB port % MYSQL_CB_REGISTER_BACKEND_TYPE4 register MySQL CB backend -Register MySQL CB backend +Debug message issued when triggered an action to register MySQL CB backend % MYSQL_CB_UNREGISTER_BACKEND_TYPE4 unregister MySQL CB backend -Unregister MySQL CB backend +Debug message issued when triggered an action to unregister MySQL CB backend -% MYSQL_CB_GET_SUBNET6_BY_PREFIX retrieving MySQL CB subnet by prefix %1 -Retrieve MySQL CB subnet by prefix +% MYSQL_CB_GET_SUBNET6_BY_PREFIX retrieving MySQL CB subnet by prefix: %1 +Debug message issued when triggered an action to retrieve MySQL CB subnet by prefix -% MYSQL_CB_GET_SUBNET6_BY_SUBNET_ID retrieving MySQL CB subnet by subnet id %1 -Retrieve MySQL CB subnet by subnet id +% MYSQL_CB_GET_SUBNET6_BY_SUBNET_ID retrieving MySQL CB subnet by subnet id: %1 +Debug message issued when triggered an action to retrieve MySQL CB subnet by subnet id % MYSQL_CB_GET_ALL_SUBNETS6 retrieving all MySQL CB subnets -Retrieve MySQL CB all subnets +Debug message issued when triggered an action to retrieve MySQL CB all subnets -% MYSQL_CB_GET_MODIFIED_SUBNETS6 retrieving modified MySQL CB subnets -Retrieve MySQL CB modified subnets +% MYSQL_CB_GET_ALL_SUBNETS6_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB all subnets -% MYSQL_CB_GET_SHARED_NETWORK_SUBNETS6 retrieving MySQL CB shared network %1 subnets -Retrieve MySQL CB shared network subnets +% MYSQL_CB_GET_MODIFIED_SUBNETS6 retrieving modified MySQL CB subnets from: %1 +Debug message issued when triggered an action to retrieve MySQL CB modified subnets from specified time -% MYSQL_CB_GET_SHARED_NETWORK6 retrieving MySQL CB shared network %1 -Retrieve MySQL CB shared network +% MYSQL_CB_GET_MODIFIED_SUBNETS6_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB modified subnets from specified time + +% MYSQL_CB_GET_SHARED_NETWORK_SUBNETS6 retrieving MySQL CB shared network: %1 subnets +Debug message issued when triggered an action to retrieve MySQL CB shared network subnets + +% MYSQL_CB_GET_SHARED_NETWORK_SUBNETS6_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB shared network subnets + +% MYSQL_CB_GET_SHARED_NETWORK6 retrieving MySQL CB shared network: %1 +Debug message issued when triggered an action to retrieve MySQL CB shared network % MYSQL_CB_GET_ALL_SHARED_NETWORKS6 retrieving MySQL CB all shared networks -Retrieve MySQL CB all shared networks +Debug message issued when triggered an action to retrieve MySQL CB all shared networks -% MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS6 retrieving MySQL CB modified shared networks -Retrieve MySQL CB modified shared networks +% MYSQL_CB_GET_ALL_SHARED_NETWORKS6_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB all shared networks -% MYSQL_CB_GET_OPTION_DEF6 retrieving MySQL CB option definition code %1 space %2 -Retrieve MySQL CB option definition +% MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS6 retrieving MySQL CB modified shared networks from: %1 +Debug message issued when triggered an action to retrieve MySQL CB modified shared networks from specified time + +% MYSQL_CB_GET_MODIFIED_SHARED_NETWORKS6_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB modified shared networks from specified time + +% MYSQL_CB_GET_OPTION_DEF6 retrieving MySQL CB option definition code: %1 space: %2 +Debug message issued when triggered an action to retrieve MySQL CB option definition % MYSQL_CB_GET_ALL_OPTION_DEFS6 retrieving MySQL CB all option definitions -Retrieve MySQL CB all option definitions +Debug message issued when triggered an action to retrieve MySQL CB all option definitions + +% MYSQL_CB_GET_ALL_OPTION_DEFS6_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB all option definitions -% MYSQL_CB_GET_MODIFIED_OPTION_DEFS6 retrieving MySQL CB modified option definitions -Retrieve MySQL CB modified option definitions +% MYSQL_CB_GET_MODIFIED_OPTION_DEFS6 retrieving MySQL CB modified option definitions from: %1 +Debug message issued when triggered an action to retrieve MySQL CB modified option definitions from specified time -% MYSQL_CB_GET_OPTION6 retrieving MySQL CB option code %1 space %2 -Retrieve MySQL CB option +% MYSQL_CB_GET_MODIFIED_OPTION_DEFS6_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB modified option definitions from specified time + +% MYSQL_CB_GET_OPTION6 retrieving MySQL CB option code: %1 space: %2 +Debug message issued when triggered an action to retrieve MySQL CB option % MYSQL_CB_GET_ALL_OPTIONS6 retrieving MySQL CB all options -Retrieve MySQL CB all options +Debug message issued when triggered an action to retrieve MySQL CB all options + +% MYSQL_CB_GET_ALL_OPTIONS6_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB all options + +% MYSQL_CB_GET_MODIFIED_OPTIONS6 retrieving MySQL CB modified options from: %1 +Debug message issued when triggered an action to retrieve MySQL CB modified options from specified time -% MYSQL_CB_GET_MODIFIED_OPTIONS6 retrieving MySQL CB modified options -Retrieve MySQL CB modified options +% MYSQL_CB_GET_MODIFIED_OPTIONS6_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB modified options from specified time -% MYSQL_CB_GET_GLOBAL_PARAMETER6 retrieving MySQL CB global parameter %1 -Retrieve MySQL CB global parameter +% MYSQL_CB_GET_GLOBAL_PARAMETER6 retrieving MySQL CB global parameter: %1 +Debug message issued when triggered an action to retrieve MySQL CB global parameter % MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS6 retrieving MySQL CB all global parameters -Retrieve MySQL CB all global parameters +Debug message issued when triggered an action to retrieve MySQL CB all global parameters -% MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS6 retrieving MySQL CB modified global parameters -Retrieve MySQL CB modified global parameters +% MYSQL_CB_GET_ALL_GLOBAL_PARAMETERS6_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB all global parameters + +% MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS6 retrieving MySQL CB modified global parameters from: %1 +Debug message issued when triggered an action to retrieve MySQL CB modified global parameters from specified time + +% MYSQL_CB_GET_MODIFIED_GLOBAL_PARAMETERS6_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB modified global parameters from specified time % MYSQL_CB_GET_RECENT_AUDIT_ENTRIES6 retrieving MySQL CB audit entries -Retrieve MySQL CB audit entries +Debug message issued when triggered an action to retrieve MySQL CB audit entries + +% MYSQL_CB_GET_RECENT_AUDIT_ENTRIES6_RESULT retrieving: %1 elements +Debug message indicating the result of an action to retrieve MySQL CB audit entries -% MYSQL_CB_CREATE_UPDATE_SUBNET6 create or update MySQL CB subnet %1 -Create or update MySQL CB subnet +% MYSQL_CB_CREATE_UPDATE_SUBNET6 create or update MySQL CB subnet: %1 +Debug message issued when triggered an action to create or update MySQL CB subnet -% MYSQL_CB_CREATE_UPDATE_SHARED_NETWORK6 create or update MySQL CB shared network %1 -Create or update MySQL CB shared network +% MYSQL_CB_CREATE_UPDATE_SHARED_NETWORK6 create or update MySQL CB shared network: %1 +Debug message issued when triggered an action to create or update MySQL CB shared network -% MYSQL_CB_CREATE_UPDATE_OPTION_DEF6 create or update MySQL CB option definition %1 code %2 -Create or update MySQL CB option definition +% MYSQL_CB_CREATE_UPDATE_OPTION_DEF6 create or update MySQL CB option definition: %1 code: %2 +Debug message issued when triggered an action to create or update MySQL CB option definition % MYSQL_CB_CREATE_UPDATE_OPTION6 create or update MySQL CB option -Create or update MySQL CB option +Debug message issued when triggered an action to create or update MySQL CB option -% MYSQL_CB_CREATE_UPDATE_SHARED_NETWORK_OPTION6 create or update MySQL CB shared network %1 option -Create or update MySQL CB shared network option +% MYSQL_CB_CREATE_UPDATE_SHARED_NETWORK_OPTION6 create or update MySQL CB shared network: %1 option +Debug message issued when triggered an action to create or update MySQL CB shared network option -% MYSQL_CB_CREATE_UPDATE_BY_SUBNET_ID_OPTION6 create or update MySQL CB option by subnet id %1 -Create or update MySQL CB option by subnet id +% MYSQL_CB_CREATE_UPDATE_BY_SUBNET_ID_OPTION6 create or update MySQL CB option by subnet id: %1 +Debug message issued when triggered an action to create or update MySQL CB option by subnet id -% MYSQL_CB_CREATE_UPDATE_BY_POOL_OPTION6 create or update MySQL CB option pool start %1 pool end %2 -Create or update MySQL CB option by pool +% MYSQL_CB_CREATE_UPDATE_BY_POOL_OPTION6 create or update MySQL CB option pool start: %1 pool end: %2 +Debug message issued when triggered an action to create or update MySQL CB option by pool -% MYSQL_CB_CREATE_UPDATE_BY_PREFIX_OPTION6 create or update MySQL CB option prefix %1 prefix len %2 -Create or update MySQL CB option by prefix +% MYSQL_CB_CREATE_UPDATE_BY_PREFIX_OPTION6 create or update MySQL CB option prefix: %1 prefix len: %2 +Debug message issued when triggered an action to create or update MySQL CB option by prefix -% MYSQL_CB_CREATE_UPDATE_GLOBAL_PARAMETER6 create or update MySQL CB global parameter %1 -Create or update MySQL CB global parameter +% MYSQL_CB_CREATE_UPDATE_GLOBAL_PARAMETER6 create or update MySQL CB global parameter: %1 +Debug message issued when triggered an action to create or update MySQL CB global parameter -% MYSQL_CB_DELETE_BY_PREFIX_SUBNET6 delete MySQL CB subnet by prefix %1 -Delete MySQL CB subnet by prefix +% MYSQL_CB_DELETE_BY_PREFIX_SUBNET6 delete MySQL CB subnet by prefix: %1 +Debug message issued when triggered an action to delete MySQL CB subnet by prefix -% MYSQL_CB_DELETE_BY_SUBNET_ID_SUBNET6 delete MySQL CB subnet by subnet id %1 -Delete MySQL CB subnet by subnet id +% MYSQL_CB_DELETE_BY_SUBNET_ID_SUBNET6 delete MySQL CB subnet by subnet id: %1 +Debug message issued when triggered an action to delete MySQL CB subnet by subnet id % MYSQL_CB_DELETE_ALL_SUBNETS6 delete MySQL CB all subnets -Delete MySQL CB all subnets +Debug message issued when triggered an action to delete MySQL CB all subnets -% MYSQL_CB_DELETE_SHARED_NETWORK_SUBNETS6 delete MySQL CB shared network %1 subnets -Delete MySQL CB shared network subnets +% MYSQL_CB_DELETE_SHARED_NETWORK_SUBNETS6 delete MySQL CB shared network: %1 subnets +Debug message issued when triggered an action to delete MySQL CB shared network subnets -% MYSQL_CB_DELETE_SHARED_NETWORK6 delete MySQL CB shared network %1 -Delete MySQL CB shared network +% MYSQL_CB_DELETE_SHARED_NETWORK6 delete MySQL CB shared network: %1 +Debug message issued when triggered an action to delete MySQL CB shared network % MYSQL_CB_DELETE_ALL_SHARED_NETWORKS6 delete MySQL CB all shared networks -Delete MySQL CB all shared networks +Debug message issued when triggered an action to delete MySQL CB all shared networks -% MYSQL_CB_DELETE_OPTION_DEF6 delete MySQL CB option definition code %1 space %2 -Delete MySQL CB option definition +% MYSQL_CB_DELETE_OPTION_DEF6 delete MySQL CB option definition code: %1 space: %2 +Debug message issued when triggered an action to delete MySQL CB option definition % MYSQL_CB_DELETE_ALL_OPTION_DEFS6 delete MySQL CB all option definitions -Delete MySQL CB all option definitions +Debug message issued when triggered an action to delete MySQL CB all option definitions -% MYSQL_CB_DELETE_OPTION6 delete MySQL CB option code %1 space %2 -Delete MySQL CB option +% MYSQL_CB_DELETE_OPTION6 delete MySQL CB option code: %1 space: %2 +Debug message issued when triggered an action to delete MySQL CB option -% MYSQL_CB_DELETE_SHARED_NETWORK_OPTION6 delete MySQL CB shared network %1 option code %2 space %3 -Delete MySQL CB shared network option +% MYSQL_CB_DELETE_SHARED_NETWORK_OPTION6 delete MySQL CB shared network: %1 option code: %2 space: %3 +Debug message issued when triggered an action to delete MySQL CB shared network option -% MYSQL_CB_DELETE_BY_SUBNET_ID_OPTION6 delete MySQL CB by subnet id %1 option code %2 space %3 -Delete MySQL CB option by subnet id +% MYSQL_CB_DELETE_BY_SUBNET_ID_OPTION6 delete MySQL CB by subnet id: %1 option code: %2 space: %3 +Debug message issued when triggered an action to delete MySQL CB option by subnet id -% MYSQL_CB_DELETE_BY_POOL_OPTION6 delete MySQL CB pool start %1 pool end %2 option code %3 space %4 -Delete MySQL CB option by pool +% MYSQL_CB_DELETE_BY_POOL_OPTION6 delete MySQL CB pool start: %1 pool end: %2 option code: %3 space: %4 +Debug message issued when triggered an action to delete MySQL CB option by pool -% MYSQL_CB_DELETE_BY_POOL_PREFIX_OPTION6 delete MySQL CB prefix %1 prefix len %2 option code %3 space %4 -Delete MySQL CB option by prefix +% MYSQL_CB_DELETE_BY_POOL_PREFIX_OPTION6 delete MySQL CB prefix: %1 prefix len: %2 option code: %3 space: %4 +Debug message issued when triggered an action to delete MySQL CB option by prefix -% MYSQL_CB_DELETE_GLOBAL_PARAMETER6 delete MySQL CB global parameter %1 -Delete MySQL CB global parameter +% MYSQL_CB_DELETE_GLOBAL_PARAMETER6 delete MySQL CB global parameter: %1 +Debug message issued when triggered an action to delete MySQL CB global parameter % MYSQL_CB_DELETE_ALL_GLOBAL_PARAMETERS6 delete MySQL CB all global parameters -Delete MySQL CB all global parameters +Debug message issued when triggered an action to delete MySQL CB all global parameters % MYSQL_CB_GET_TYPE6 get MySQL CB type -Retrieve MySQL CB type +Debug message issued when triggered an action to retrieve MySQL CB type % MYSQL_CB_GET_HOST6 get MySQL CB host -Retrieve MySQL CB host +Debug message issued when triggered an action to retrieve MySQL CB host % MYSQL_CB_GET_PORT6 get MySQL CB port -Retrieve MySQL CB port +Debug message issued when triggered an action to retrieve MySQL CB port % MYSQL_CB_REGISTER_BACKEND_TYPE6 register MySQL CB backend -Register MySQL CB backend +Debug message issued when triggered an action to register MySQL CB backend % MYSQL_CB_UNREGISTER_BACKEND_TYPE6 unregister MySQL CB backend -Unregister MySQL CB backend +Debug message issued when triggered an action to unregister MySQL CB backend -- 2.47.2