Revert "MXS-2513 Deprecate firewall and masking filters"

This reverts commit de3c5721e95d5d5be909a56faeb121ad09a2f6fe.
This commit is contained in:
Johan Wikman
2019-06-24 10:21:01 +03:00
parent 278c26cd54
commit 9f771ffc2b
6 changed files with 41 additions and 40 deletions

View File

@ -1272,9 +1272,6 @@ Dbfw::~Dbfw()
Dbfw* Dbfw::create(const char* zName, MXS_CONFIG_PARAMETER* pParams)
{
MXS_WARNING("The database firewall filter has been DEPRECATED in MaxScale 2.4 "
"and it will be removed in a future release of MaxScale.");
Dbfw* rval = NULL;
RuleList rules;
UserMap users;

View File

@ -77,6 +77,8 @@ extern "C" MXS_MODULE* MXS_CREATE_MODULE()
reload_argv,
"Reload masking filter rules");
MXS_NOTICE("Masking module %s initialized.", VERSION_STRING);
typedef MaskingFilter::Config Config;
static MXS_MODULE info =
@ -174,9 +176,6 @@ MaskingFilter::~MaskingFilter()
// static
MaskingFilter* MaskingFilter::create(const char* zName, MXS_CONFIG_PARAMETER* pParams)
{
MXS_WARNING("The masking filter has been DEPRECATED in MaxScale 2.4 and "
"it will be removed in a future release of MaxScale.");
MaskingFilter* pFilter = NULL;
Config config(zName, pParams);