MXS-1220: Implement JSON diagnostics entry point in first part of filters

First part of the filters now implement the JSON version of the
diagnostics function. The rest are converted in a followup commit.
This commit is contained in:
Markus Mäkelä
2017-04-18 07:15:51 +03:00
committed by Markus Mäkelä
parent 4804c975ad
commit 12baa304e6
16 changed files with 150 additions and 156 deletions

View File

@ -569,8 +569,9 @@ int FilterSession::clientReply(GWBUF* pPacket)
return m_up.clientReply(pPacket);
}
void FilterSession::diagnostics(DCB* pDcb)
json_t* FilterSession::diagnostics()
{
return NULL;
}
}