Changeset 5fda37e in nscp
- Timestamp:
- 06/24/08 22:41:09 (5 years ago)
- Branches:
- master, 0.4.0, 0.4.1, 0.4.2, stable
- Children:
- 3abff5c
- Parents:
- 157dea5
- Files:
-
- 3 edited
-
AutoBuild.h (modified) (1 diff)
-
changelog (modified) (1 diff)
-
modules/NRPEListener/NRPEListener.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
AutoBuild.h
rdff5db9 r5fda37e 3 3 // change the FALSE to TRUE for autoincrement of build number 4 4 #define INCREMENT_VERSION TRUE 5 #define FILEVER 0,3,3, 56 #define PRODUCTVER 0,3,3, 57 #define STRFILEVER _T("0.3.3. 5")8 #define STRPRODUCTVER _T("0.3.3. 5")9 #define STRPRODUCTDATE _T("2008-06- 14")5 #define FILEVER 0,3,3,11 6 #define PRODUCTVER 0,3,3,11 7 #define STRFILEVER _T("0.3.3.11") 8 #define STRPRODUCTVER _T("0.3.3.11") 9 #define STRPRODUCTDATE _T("2008-06-24") 10 10 #endif // AUTOBUILD_H -
changelog
r157dea5 r5fda37e 5 5 * Improved socket performance (would be nice if we could be used as a "hub") 6 6 * "The message is blocked by User Interface Privilege Isolation, Administrative applications that need to see it can allow it through by calling ChangeWindowMessageFilter after making sure the necessary security precautions are in place. " 7 8 2008-06-24 MickeM 9 + Added new check (to CheckHelpers): CheckOK: Just return OK (anything passed along will be used as a message). 10 + Added new check (to CheckHelpers): CheckWARNING: Just return WARN (anything passed along will be used as a message). 11 + Added new check (to CheckHelpers): CheckCRITICAL: Just return CRIT (anything passed along will be used as a message). 12 + Added new check (to CheckHelpers): CheckVersion: Just return the nagios version (along with OK status). 13 * Better error messages in the check service thingy. 7 14 8 15 2008-06-18 MickeM -
modules/NRPEListener/NRPEListener.cpp
r140dd49 r5fda37e 228 228 //p++; 229 229 } 230 return NSCModuleHelper::InjectSplitAndCommand(t.first, sTarget, '!', message, perf); 230 try { 231 return NSCModuleHelper::InjectSplitAndCommand(t.first, sTarget, '!', message, perf); 232 } catch (NSCModuleHelper::NSCMHExcpetion e) { 233 NSC_LOG_ERROR_STD(_T("Failed to inject command (") + command.c_str() + _T("): ") + e.msg_); 234 } catch (...) { 235 NSC_LOG_ERROR_STD(_T("Failed to inject command (") + command.c_str() + _T("): Unknown error REPORT THIS")); 236 } 231 237 } else if (cd.type == script) { 232 238 int result = process::executeProcess(root_, args, message, perf, timeout);
Note: See TracChangeset
for help on using the changeset viewer.








