Move MySQL analyzer to the new plugin architecture.

This commit is contained in:
Vlad Grigorescu 2014-10-27 13:55:10 -04:00
parent b259a41ef2
commit 45d5080870
2 changed files with 18 additions and 6 deletions

View file

@ -28,7 +28,7 @@ public:
virtual void EndpointEOF(bool is_orig);
static analyzer::Analyzer* InstantiateAnalyzer(Connection* conn)
static analyzer::Analyzer* Instantiate(Connection* conn)
{ return new MySQL_Analyzer(conn); }
static bool Available()