Remove filter options

None of the filters used the options. The filter API version was already
incremented once for 2.3 so there's no need to increment it again.
This commit is contained in:
Markus Mäkelä
2018-07-10 06:05:50 +03:00
parent cbb8c68770
commit 81527894ee
41 changed files with 50 additions and 158 deletions

View File

@ -228,11 +228,11 @@ template<class FilterType, class FilterSessionType>
class Filter : public MXS_FILTER
{
public:
static MXS_FILTER* createInstance(const char* zName, char** pzOptions, MXS_CONFIG_PARAMETER* ppParams)
static MXS_FILTER* createInstance(const char* zName, MXS_CONFIG_PARAMETER* ppParams)
{
FilterType* pFilter = NULL;
MXS_EXCEPTION_GUARD(pFilter = FilterType::create(zName, pzOptions, ppParams));
MXS_EXCEPTION_GUARD(pFilter = FilterType::create(zName, ppParams));
return pFilter;
}