Changeset 229
- Timestamp:
- 01/03/10 22:59:46 (2 years ago)
- Location:
- trunk
- Files:
-
- 9 added
- 3 edited
-
include/nsc_module_wrapper.hpp (modified) (1 diff)
-
modules/NRPEClient/stdafx.h (modified) (1 diff)
-
modules/Scheduler (added)
-
modules/Scheduler/CMakeLists.txt (added)
-
modules/Scheduler/Scheduler.cpp (added)
-
modules/Scheduler/Scheduler.def (added)
-
modules/Scheduler/Scheduler.h (added)
-
modules/Scheduler/simple_scheduler.cpp (added)
-
modules/Scheduler/simple_scheduler.hpp (added)
-
modules/Scheduler/stdafx.cpp (added)
-
modules/Scheduler/stdafx.h (added)
-
service/simple_client.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/nsc_module_wrapper.hpp
r220 r229 81 81 // Message wrappers below this point 82 82 83 #ifdef _WIN32 84 #define NSC_WRAP_DLL() \ 85 BOOL APIENTRY DllMain( HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) { NSCModuleWrapper::wrapDllMain(hModule, ul_reason_for_call); return TRUE; } 86 #else 87 #define NSC_WRAP_DLL() 88 #endif 89 83 90 #define NSC_WRAPPERS_MAIN_DEF(toObject) \ 84 91 extern int NSModuleHelperInit(unsigned int id, NSCModuleHelper::lpNSAPILoader f) { \ -
trunk/modules/NRPEClient/stdafx.h
r226 r229 24 24 #include <functional> 25 25 26 #include <boost/array.hpp> 27 #include <boost/optional.hpp> 28 #include <boost/bind.hpp> 29 #include <program_options_ex.hpp> 30 31 #include <boost/asio.hpp> 32 #ifdef USE_SSL 33 #include <boost/asio/ssl.hpp> 34 #endif 35 36 26 37 #include <config.h> 27 38 #include <utils.h> 39 #include <types.hpp> 28 40 29 #include <types.hpp>30 41 #include <NSCAPI.h> 31 42 #include <NSCHelper.h> 32 43 #include <nsc_module_wrapper.hpp> 33 34 #include <boost/array.hpp>35 #include <boost/asio.hpp>36 #include <boost/optional.hpp>37 #include <boost/bind.hpp>38 #ifdef USE_SSL39 #include <boost/asio/ssl.hpp>40 #endif41 #include <program_options_ex.hpp>42 44 namespace po = boost::program_options; 43 45 -
trunk/service/simple_client.hpp
r221 r229 39 39 for (std::list<std::wstring>::const_iterator cit = lst.begin(); cit!=lst.end();++cit) 40 40 std::wcout << *cit << std::endl; 41 std::wcout << _T("Listing commands...Done") << std::endl; 41 42 } else if (s == _T("off") && buff == _T("debug ")) { 42 43 std::wcout << _T("Setting debug log off...") << std::endl;
Note: See TracChangeset
for help on using the changeset viewer.







