12345678910111213141516171819202122232425262728 |
- #include "DAgentConfigCheck.h"
- DAgentConfigCheck::DAgentConfigCheck(const char *lpszConfigFile) : ECConfigCheck("DAgent Configuration file", lpszConfigFile)
- {
- }
- void DAgentConfigCheck::loadChecks()
- {
- addCheck("lmtp_max_threads", 0, &testNonZero);
- }
|