Changeset a78a985 in nscp
- Timestamp:
- 09/05/11 20:55:52 (21 months ago)
- Branches:
- master, 0.4.0, 0.4.1, 0.4.2
- Children:
- 7515d00
- Parents:
- fb7e36a
- Files:
-
- 1 added
- 44 edited
-
changelog (modified) (2 diffs)
-
helpers/installer-dlls/main_dll/main_dll.cpp (modified) (4 diffs)
-
helpers/installers/installer/Product.wxs (modified) (2 diffs)
-
helpers/systray_helper/TrayWidget.cpp (modified) (1 diff)
-
include/common.hpp (added)
-
include/config.h.in (modified) (4 diffs)
-
modules/CheckDisk/CheckDisk.cpp (modified) (2 diffs)
-
modules/CheckDisk/CheckDisk.h (modified) (1 diff)
-
modules/CheckDisk/file_info.cpp (modified) (1 diff)
-
modules/CheckDisk/filter.cpp (modified) (1 diff)
-
modules/CheckDisk/stdafx.h (modified) (1 diff)
-
modules/CheckEventLog/CheckEventLog.cpp (modified) (2 diffs)
-
modules/CheckEventLog/filter.cpp (modified) (1 diff)
-
modules/CheckEventLog/stdafx.h (modified) (1 diff)
-
modules/CheckExternalScripts/CheckExternalScripts.cpp (modified) (1 diff)
-
modules/CheckExternalScripts/stdafx.h (modified) (1 diff)
-
modules/CheckHelpers/CheckHelpers.h (modified) (1 diff)
-
modules/CheckNSCP/CheckNSCP.cpp (modified) (1 diff)
-
modules/CheckNSCP/CheckNSCP.h (modified) (1 diff)
-
modules/CheckSystem/CheckSystem.cpp (modified) (1 diff)
-
modules/CheckSystem/stdafx.h (modified) (1 diff)
-
modules/CheckTaskSched/CheckTaskSched.h (modified) (1 diff)
-
modules/CheckTaskSched/stdafx.h (modified) (1 diff)
-
modules/CheckTaskSched2/CheckTaskSched2.h (modified) (1 diff)
-
modules/CheckTaskSched2/stdafx.h (modified) (1 diff)
-
modules/CheckWMI/CheckWMI.h (modified) (1 diff)
-
modules/CheckWMI/stdafx.h (modified) (2 diffs)
-
modules/DebugLogMetrics/DebugLogMetrics.cpp (modified) (1 diff)
-
modules/DebugLogMetrics/stdafx.h (modified) (1 diff)
-
modules/FileLogger/FileLogger.cpp (modified) (2 diffs)
-
modules/LUAScript/LUAScript.h (modified) (1 diff)
-
modules/NRPEClient/NRPEClient.cpp (modified) (1 diff)
-
modules/NRPEClient/NRPEClient.h (modified) (1 diff)
-
modules/NRPEClient/stdafx.h (modified) (2 diffs)
-
modules/NRPEServer/NRPEServer.cpp (modified) (1 diff)
-
modules/NRPEServer/handler_impl.cpp (modified) (1 diff)
-
modules/NRPEServer/stdafx.h (modified) (1 diff)
-
modules/NSClientServer/NSClientSocket.cpp (modified) (1 diff)
-
modules/PythonScript/script_wrapper.hpp (modified) (1 diff)
-
modules/RemoteConfiguration/RemoteConfiguration.h (modified) (1 diff)
-
modules/Scheduler/Scheduler.h (modified) (1 diff)
-
modules/SysTray/SysTray.cpp (modified) (1 diff)
-
modules/WEBConfiguration/WEBConfiguration.h (modified) (1 diff)
-
version.hpp (modified) (1 diff)
-
version.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
changelog
rfb7e36a ra78a985 6 6 * Fix RtlStringFromGUID problem on NT4 7 7 8 2011-09-03 MickeM 8 2011-09-05 MickeM 9 * Cleaned up some dependencies (on config.h) 10 * Fixed invalid data in config.h.in 11 12 2011-09-03 MickeM (0.4.0.93) 9 13 * Created a protcol buffer free version of the python test script 10 14 * Upgraded to new version of simpleinin class … … 69 73 * Fixed so it works on linux (fixed issues with timeout) 70 74 71 2011-08-16 MickeM 75 2011-08-16 MickeM (0.4.0.85) 72 76 * Added support for remote WMI checking using target/username/password options like so: 73 77 CheckWMI target=192.168.0.123 user=\\foobar password=foobar namespace=root\\cimv2 MaxCrit=3 MinWarn=1 "Query:load=Select * from win32_Processor" -
helpers/installer-dlls/main_dll/main_dll.cpp
r65a2940 ra78a985 4 4 #include <error.hpp> 5 5 //#include <Settings.h> 6 //#include <config.h> 6 7 #include <config.h> 7 8 #include <ServiceCmd.h> … … 66 67 67 68 installer_settings_provider(msi_helper *h, std::wstring basepath, std::wstring old_settings_map) : h(h), logger(h), basepath(basepath), old_settings_map(old_settings_map) {} 69 installer_settings_provider(msi_helper *h, std::wstring basepath) : h(h), logger(h), basepath(basepath) {} 68 70 69 71 virtual std::wstring expand_path(std::wstring file) { … … 89 91 } 90 92 std::wstring get_data(std::wstring key) { 91 if ( key == _T("old_settings_map_data")) {93 if (!old_settings_map.empty() && key == _T("old_settings_map_data")) { 92 94 return old_settings_map; 93 95 } … … 326 328 int add_defaults = data.get_next_int(); 327 329 328 std::wstring map_data = read_map_data(h);329 330 installer_settings_provider provider(&h, target , map_data);330 //std::wstring map_data = read_map_data(h); 331 332 installer_settings_provider provider(&h, target); 331 333 if (!settings_manager::init_settings(&provider, context)) { 332 334 h.errorMessage(_T("Failed to boot settings: ") + provider.get_error()); -
helpers/installers/installer/Product.wxs
rfb7e36a ra78a985 169 169 <Component Id="PythonScripts" Guid="8820A304-C697-4393-A72F-$(var.Postfix.GUID)" Win64="$(var.Win64)"> 170 170 <File Id="P_script_001" Name="test.py" DiskId="1" Source="$(var.Source)/scripts/python/test.py" Vital="no" /> 171 <File Id="P_script_002" Name="test_ second.py" DiskId="1" Source="$(var.Source)/scripts/python/test_pb.py" Vital="no" />171 <File Id="P_script_002" Name="test_pb.py" DiskId="1" Source="$(var.Source)/scripts/python/test_pb.py" Vital="no" /> 172 172 </Component> 173 173 </Directory> … … 176 176 <Component Id="PythonScriptsPBLib1" Guid="555165B3-5CBF-4204-A349-6AD7CCEF14EB" Win64="$(var.Win64)"> 177 177 <File Id="p_script_lib_001" Name="__init__.py" DiskId="1" Source="$(var.Source)/scripts/python/lib/__init__.py" Vital="no" /> 178 <File Id="p_script_pb_001" Name="ipc_pb2.py" DiskId="1" Source="$(var.Source)/scripts/python/lib/ipc_pb2.py" Vital="no" /> 179 <File Id="p_script_pb_002" Name="plugin_pb2.py" DiskId="1" Source="$(var.Source)/scripts/python/lib/plugin_pb2.py" Vital="no" /> 178 180 </Component> 179 181 <Directory Id="INSTALLLOCATION_SCRIPTS_PYTHON_LIB2" Name="google"> -
helpers/systray_helper/TrayWidget.cpp
r739db5a ra78a985 20 20 ***************************************************************************/ 21 21 #include "stdafx.h" 22 #include <config.h>22 //#include <config.h> 23 23 #include "TrayWidget.h" 24 24 #include "resource.h" -
include/config.h.in
r60e6c18 ra78a985 22 22 23 23 #include "../version.hpp" 24 /*25 #include <tchar.h>26 */27 24 #include <string> 28 #include <settings/macros.h>29 // Application Name30 25 31 26 #ifndef WSTR … … 34 29 35 30 #define APPLICATION_NAME WSTR("NSClient++") 36 37 // Version38 #define SZBETATAG " "39 //#define SZBETATAG " BETA "40 //#define SZBETATAG " BETA "41 #define _SZVERSION WSTR(STRPRODUCTVER) WSTR(SZBETATAG) WSTR(STRPRODUCTDATE)42 #define CURRENT_SERVICE_VERSION _SZVERSION43 //STRPRODUCTVER SZBETATAG STRPRODUCTDATE44 //FILEVER[0]45 31 46 32 #if defined(_M_IX86) … … 61 47 62 48 // displayed name of the service 63 #define SERVICE_NAME SZAPPNAME WSTR(" ") CURRENT_SERVICE_VERSION WSTR(" ") SZARCH 49 #define SERVICE_NAME APPLICATION_NAME WSTR(" ") CURRENT_SERVICE_VERSION WSTR(" ") SZARCH 50 51 // Display version 52 #define CURRENT_SERVICE_VERSION WSTR(STRPRODUCTVER) WSTR(" ") WSTR(STRPRODUCTDATE) 64 53 65 54 // list of service dependencies - "dep1\0dep2\0\0" 66 55 #define DEFAULT_SERVICE_DEPS _T("") 67 68 // Buffer size of incoming data (notice this is the maximum request length!)69 #define RECV_BUFFER_LEN 102470 56 71 57 #define NASTY_METACHARS "|`&><'\"\\[]{}" /* This may need to be modified for windows directory seperator */ … … 90 76 #define DEFAULT_CACHE_PATH _T("${shared-path}/cache") 91 77 92 93 // Default Argument string (for consistency)94 #define SHOW_ALL _T("ShowAll")95 #define SHOW_FAIL _T("ShowFail")96 #define NSCLIENT _T("nsclient")97 #define IGNORE_PERFDATA _T("ignore-perf-data")98 #define CHECK_ALL _T("CheckAll")99 #define CHECK_ALL_OTHERS _T("CheckAllOthers")100 101 // Check System Settings102 /*103 #define C_SYSTEM_SECTION_TITLE _T("Check System")104 #define C_SYSTEM_CPU_BUFFER_TIME _T("CPUBufferSize")105 #define C_SYSTEM_CPU_BUFFER_TIME_DEFAULT _T("1h")106 #define C_SYSTEM_CHECK_RESOLUTION _T("CheckResolution")107 #define C_SYSTEM_CHECK_RESOLUTION_DEFAULT 10 // unit: second/10108 109 #define C_SYSTEM_AUTODETECT_PDH _T("auto_detect_pdh")110 #define C_SYSTEM_AUTODETECT_PDH_DEFAULT 1111 #define C_SYSTEM_FORCE_LANGUAGE _T("force_language")112 #define C_SYSTEM_FORCE_LANGUAGE_DEFAULT _T("")113 #define C_SYSTEM_NO_INDEX _T("dont_use_pdh_index")114 #define C_SYSTEM_NO_INDEX_DEFAULT 0115 #define C_SYSTEM_IGNORE_COLLECTION _T("debug_skip_data_collection")116 #define C_SYSTEM_IGNORE_COLLECTION_DEFAULT 0117 118 #define C_SYSTEM_MEM_PAGE_LIMIT _T("MemoryCommitLimit")119 #define C_SYSTEM_MEM_PAGE_LIMIT_DEFAULT _T("\\Memory\\Commit Limit")120 #define C_SYSTEM_MEM_PAGE _T("MemoryCommitByte")121 #define C_SYSTEM_MEM_PAGE_DEFAULT _T("\\Memory\\Committed Bytes")122 #define C_SYSTEM_UPTIME _T("SystemSystemUpTime")123 #define C_SYSTEM_UPTIME_DEFAULT _T("\\System\\System Up Time")124 #define C_SYSTEM_CPU _T("SystemTotalProcessorTime")125 #define C_SYSTEM_MEM_CPU_DEFAULT _T("\\Processor(_total)\\% Processor Time")126 #define C_SYSTEM_ENUMPROC_METHOD_PSAPI _T("PSAPI")127 #define C_SYSTEM_ENUMPROC_METHOD_THELP _T("TOOLHELP")128 #define C_SYSTEM_ENUMPROC_METHOD_AUTO _T("auto")129 #define C_SYSTEM_ENUMPROC_METHOD _T("ProcessEnumerationMethod")130 #define C_SYSTEM_ENUMPROC_METHOD_DEFAULT C_SYSTEM_ENUMPROC_METHOD_AUTO131 132 133 #define EVENTLOG_SECTION_TITLE _T("Eventlog")134 #define EVENTLOG_DEBUG _T("debug")135 #define EVENTLOG_DEBUG_DEFAULT 0136 #define EVENTLOG_LOOKUP_NAMES _T("lookup_names")137 #define EVENTLOG_LOOKUP_NAMES_DEFAULT 1138 #define EVENTLOG_SYNTAX _T("syntax")139 #define EVENTLOG_SYNTAX_DEFAULT _T("")140 #define EVENTLOG_BUFFER _T("buffer_size")141 #define EVENTLOG_BUFFER_DEFAULT 1024*64142 143 */144 /*145 #define NSCA_AGENT_SECTION_TITLE _T("NSCA Agent")146 #define NSCA_CMD_SECTION_TITLE _T("NSCA Commands")147 #define NSCA_INTERVAL _T("interval")148 #define NSCA_INTERVAL_DEFAULT 60149 #define NSCA_HOSTNAME _T("hostname")150 #define NSCA_HOSTNAME_DEFAULT _T("")151 #define NSCA_SERVER _T("nsca_host")152 #define NSCA_SERVER_DEFAULT _T("unknown-host")153 #define NSCA_PORT _T("nsca_port")154 #define NSCA_PORT_DEFAULT 5667155 #define NSCA_ENCRYPTION _T("encryption_method")156 #define NSCA_ENCRYPTION_DEFAULT 1157 #define NSCA_PASSWORD _T("password")158 #define NSCA_PASSWORD_DEFAULT _T("")159 #define NSCA_DEBUG_THREADS _T("debug_threads")160 #define NSCA_DEBUG_THREADS_DEFAULT 1161 #define NSCA_CACHE_HOST _T("cache_hostname")162 #define NSCA_CACHE_HOST_DEFAULT 0163 #define NSCA_TIME_DELTA _T("time_delay")164 #define NSCA_TIME_DELTA_DEFAULT _T("0")165 #define NSCA_REPORT _T("report")166 #define NSCA_REPORT_DEFAULT _T("all")167 #define NSCA_READ_TIMEOUT _T("socket_timeout")168 #define NSCA_READ_TIMEOUT_DEFAULT 30169 #define NSCA_STRLEN _T("string_length")170 #define NSCA_STRLEN_DEFAULT 512171 172 #define C_SYSTEM_SVC_ALL_0 _T("check_all_services[SERVICE_BOOT_START]")173 #define C_SYSTEM_SVC_ALL_0_DEFAULT _T("ignored")174 #define C_SYSTEM_SVC_ALL_1 _T("check_all_services[SERVICE_SYSTEM_START]")175 #define C_SYSTEM_SVC_ALL_1_DEFAULT _T("ignored")176 #define C_SYSTEM_SVC_ALL_2 _T("check_all_services[SERVICE_AUTO_START]")177 #define C_SYSTEM_SVC_ALL_2_DEFAULT _T("started")178 #define C_SYSTEM_SVC_ALL_3 _T("check_all_services[SERVICE_DEMAND_START]")179 #define C_SYSTEM_SVC_ALL_3_DEFAULT _T("ignored")180 #define C_SYSTEM_SVC_ALL_4 _T("check_all_services[SERVICE_DISABLED]")181 #define C_SYSTEM_SVC_ALL_4_DEFAULT _T("stopped")182 183 */184 /*185 #define C_TASKSCHED_SECTION _T("Task Scheduler")186 #define C_TASKSCHED_SYNTAX _T("syntax")187 #define C_TASKSCHED_SYNTAX_DEFAULT _T("%title% last run: %most-recent-run-time% (%exit-code%)")188 */189 // Log to File Settings190 /*191 #define LOG_SECTION_TITLE _T("log")192 #define LOG_FILENAME _T("file")193 #define LOG_FILENAME_DEFAULT _T("nsclient.log")194 #define LOG_DATEMASK _T("date_mask")195 #define LOG_DATEMASK_DEFAULT _T("%Y-%m-%d %H:%M:%S")196 197 #define LOG_ROOT _T("root_folder")198 #define LOG_ROOT_DEFAULT _T("exe")199 200 */201 // Main Settings202 /*203 #define MAIN_SECTION_TITLE _T("Settings")204 #define MAIN_USEFILE_DEFAULT 0205 #define MAIN_MASTERKEY _T("master_key")206 #define MAIN_MASTERKEY_DEFAULT _T("This is a secret key that you should change")207 #define MAIN_OBFUSCATED_PASWD _T("obfuscated_password")208 #define MAIN_OBFUSCATED_PASWD_DEFAULT _T("")209 #define MAIN_SETTINGS_PWD _T("password")210 #define MAIN_SETTINGS_PWD_DEFAULT _T("")211 #define MAIN_ALLOWED_HOSTS _T("allowed_hosts")212 #define MAIN_ALLOWED_HOSTS_DEFAULT _T("127.0.0.1")213 #define MAIN_ALLOWED_HOSTS_CACHE _T("cache_allowed_hosts")214 #define MAIN_ALLOWED_HOSTS_CACHE_DEFAULT 1215 #define MAIN_STRING_LENGTH _T("string_length")216 #define MAIN_STRING_LENGTH_DEFAULT 4096217 #define MAIN_SHARED_SESSION _T("shared_session")218 #define MAIN_SHARED_SESSION_DEFAULT 0219 */220 221 // LOA Config items222 /*223 #define LUA_SCRIPT_SECTION_TITLE _T("LUA Scripts")224 */ -
modules/CheckDisk/CheckDisk.cpp
ra44cb15 ra78a985 21 21 #include "stdafx.h" 22 22 #include "CheckDisk.h" 23 #include <strEx.h>24 23 #include <time.h> 25 24 #include <filter_framework.hpp> … … 39 38 #include <parsers/where/unary_op.hpp> 40 39 #include <parsers/where/variable.hpp> 40 41 #include <config.h> 41 42 42 43 namespace sh = nscapi::settings_helper; -
modules/CheckDisk/CheckDisk.h
ra14aa07 ra78a985 20 20 ***************************************************************************/ 21 21 NSC_WRAPPERS_MAIN(); 22 #include <config.h>22 //#include <config.h> 23 23 #include <strEx.h> 24 24 #include <utils.h> -
modules/CheckDisk/file_info.cpp
re11d494 ra78a985 1 1 #include "stdafx.h" 2 2 3 /*4 #include "file_info.hpp"5 #include <strEx.h>6 #include <error.hpp>7 #include <config.h>8 9 #include "filter.hpp"10 11 #include <parsers/where/unary_fun.hpp>12 #include <parsers/where/list_value.hpp>13 #include <parsers/where/binary_op.hpp>14 #include <parsers/where/unary_op.hpp>15 #include <parsers/where/variable.hpp>16 17 bool file_finder::filter::matchFilter(file_filter::filter_obj *value) const {18 if ((size.hasFilter())&&(size.matchFilter(value->get_size())))19 return true;20 else if (creation.hasFilter()&&creation.matchFilter(value->get_creation()))21 return true;22 else if (accessed.hasFilter()&&accessed.matchFilter(value->get_access()))23 return true;24 else if (written.hasFilter()&&written.matchFilter(value->get_write()))25 return true;26 else if ((version.hasFilter())&&(version.matchFilter(value->get_version())))27 return true;28 else if ((line_count.hasFilter())&&(line_count.matchFilter(value->get_line_count())))29 return true;30 return false;31 }32 */ -
modules/CheckDisk/filter.cpp
re11d494 ra78a985 24 24 #include "file_finder.hpp" 25 25 26 #include <config.h>26 //#include <config.h> 27 27 28 28 using namespace boost::assign; -
modules/CheckDisk/stdafx.h
r1f24a1c ra78a985 30 30 #include <boost/lexical_cast.hpp> 31 31 32 #include <config.h> 32 #include <common.hpp> 33 #include <strEx.h> 33 34 #include <unicode_char.hpp> 34 35 #include <types.hpp> -
modules/CheckEventLog/CheckEventLog.cpp
ra44cb15 ra78a985 25 25 #include <boost/foreach.hpp> 26 26 27 #include <strEx.h>28 27 #include <time.h> 29 28 #include <utils.h> … … 31 30 #include <map> 32 31 #include <vector> 33 #include <config.h>32 //#include <config.h> 34 33 35 34 #include <boost/bind.hpp> -
modules/CheckEventLog/filter.cpp
re11d494 ra78a985 21 21 #include "filter.hpp" 22 22 23 #include <config.h>23 //#include <config.h> 24 24 25 25 using namespace boost::assign; -
modules/CheckEventLog/stdafx.h
r497b779 ra78a985 35 35 #include <boost/lexical_cast.hpp> 36 36 37 #include <config.h> 37 #include <common.hpp> 38 #include <strEx.h> 38 39 #include <unicode_char.hpp> 39 40 #include <types.hpp> -
modules/CheckExternalScripts/CheckExternalScripts.cpp
r81e420c ra78a985 32 32 #include <settings/client/settings_client.hpp> 33 33 #include <nscapi/functions.hpp> 34 35 #include <config.h> 34 36 35 37 namespace sh = nscapi::settings_helper; -
modules/CheckExternalScripts/stdafx.h
r64d42de ra78a985 27 27 #include <boost/lexical_cast.hpp> 28 28 29 #include <config.h> 29 #include <common.hpp> 30 #include <strEx.h> 30 31 #include <unicode_char.hpp> 31 32 #include <types.hpp> -
modules/CheckHelpers/CheckHelpers.h
ra14aa07 ra78a985 20 20 ***************************************************************************/ 21 21 NSC_WRAPPERS_MAIN(); 22 #include <config.h>22 //#include <config.h> 23 23 #include <strEx.h> 24 24 -
modules/CheckNSCP/CheckNSCP.cpp
ra44cb15 ra78a985 23 23 #include <file_helpers.hpp> 24 24 #include <unicode_char.hpp> 25 26 #include <config.h> 25 27 26 28 #include <settings/client/settings_client.hpp> -
modules/CheckNSCP/CheckNSCP.h
ra14aa07 ra78a985 21 21 #pragma once 22 22 23 #include <config.h>23 //#include <config.h> 24 24 25 25 #include <string> -
modules/CheckSystem/CheckSystem.cpp
ra44cb15 ra78a985 38 38 #include <settings/client/settings_client.hpp> 39 39 #include <arrayBuffer.h> 40 41 #include <config.h> 40 42 41 43 /** -
modules/CheckSystem/stdafx.h
r294b37b ra78a985 30 30 31 31 #include <iostream> 32 #include <tchar.h>33 32 #include <string> 34 33 #include <hash_map> 35 34 #include <list> 35 36 #include <common.hpp> 37 #include <tchar.h> 36 38 #include <NSCAPI.h> 37 39 #include <nscapi/plugin.hpp> 38 40 #include <nscapi/nscapi_plugin_wrapper.hpp> 39 #include <config.h>41 //#include <config.h> 40 42 #include <utils.h> 41 43 #include <error.hpp> -
modules/CheckTaskSched/CheckTaskSched.h
ra14aa07 ra78a985 22 22 NSC_WRAPPERS_CLI(); 23 23 24 #include <config.h>24 //#include <config.h> 25 25 #include <strEx.h> 26 26 #include <utils.h> -
modules/CheckTaskSched/stdafx.h
r1ecd26f ra78a985 33 33 #include <objbase.h> 34 34 35 #include <common.hpp> 36 #include <strEx.h> 35 37 #include <NSCAPI.h> 36 38 #include <nscapi/plugin.hpp> -
modules/CheckTaskSched2/CheckTaskSched2.h
ra14aa07 ra78a985 22 22 NSC_WRAPPERS_CLI(); 23 23 24 #include <config.h>24 //#include <config.h> 25 25 #include <strEx.h> 26 26 #include <utils.h> -
modules/CheckTaskSched2/stdafx.h
r1f24a1c ra78a985 33 33 #include <objbase.h> 34 34 35 #include <common.hpp> 36 #include <strEx.h> 35 37 #include <NSCAPI.h> 36 38 #include <nscapi/plugin.hpp> -
modules/CheckWMI/CheckWMI.h
ra14aa07 ra78a985 22 22 NSC_WRAPPERS_CLI(); 23 23 24 #include <config.h>24 //#include <config.h> 25 25 #include <strEx.h> 26 26 #include <utils.h> -
modules/CheckWMI/stdafx.h
rfe75eff ra78a985 42 42 #include <objbase.h> 43 43 44 #include <common.hpp> 44 45 #include <NSCAPI.h> 45 46 #include <nscapi/plugin.hpp> … … 53 54 #include <atlsafe.h> 54 55 56 55 57 #ifdef MEMCHECK 56 58 #include <vld.h> -
modules/DebugLogMetrics/DebugLogMetrics.cpp
rd66ccee ra78a985 23 23 #include <strEx.h> 24 24 #include <time.h> 25 #include <config.h>25 //#include <config.h> 26 26 #include <Psapi.h> 27 27 -
modules/DebugLogMetrics/stdafx.h
r7f9c823 ra78a985 28 28 #include <functional> 29 29 30 #include <config.h>30 //#include <config.h> 31 31 #include <utils.h> 32 32 -
modules/FileLogger/FileLogger.cpp
r81e420c ra78a985 20 20 ***************************************************************************/ 21 21 22 #include <config.h>22 //#include <config.h> 23 23 24 24 #include <string> … … 33 33 34 34 #include <settings/client/settings_client.hpp> 35 35 #include <settings/macros.h> 36 36 37 37 namespace sh = nscapi::settings_helper; -
modules/LUAScript/LUAScript.h
ra14aa07 ra78a985 20 20 ***************************************************************************/ 21 21 NSC_WRAPPERS_MAIN(); 22 #include <config.h>22 //#include <config.h> 23 23 #include <strEx.h> 24 24 #include <utils.h> -
modules/NRPEClient/NRPEClient.cpp
ra44cb15 ra78a985 23 23 #include <strEx.h> 24 24 #include <time.h> 25 #include <config.h> 26 #include <strEx.h> 27 #include <boost/filesystem.hpp> 25 //#include <config.h> 28 26 #include <strEx.h> 29 27 #include <nrpe/client/socket.hpp> -
modules/NRPEClient/NRPEClient.h
ra14aa07 ra78a985 27 27 #include <nrpe/packet.hpp> 28 28 29 namespace po = boost::program_options; 29 30 30 31 class NRPEClient : public nscapi::impl::simple_command_handler, public nscapi::impl::simple_plugin, public nscapi::impl::simple_command_line_exec { -
modules/NRPEClient/stdafx.h
r1f24a1c ra78a985 27 27 #include <boost/optional.hpp> 28 28 #include <boost/bind.hpp> 29 #include < program_options_ex.hpp>29 #include <boost/filesystem.hpp> 30 30 31 31 //#define _WIN32_WINNT 0x0403 … … 38 38 39 39 40 #include <config.h>40 //#include <config.h> 41 41 #include <utils.h> 42 42 #include <types.hpp> 43 43 44 #include <config.h> 45 #include <settings/macros.h> 44 46 #include <NSCAPI.h> 45 47 #include <nscapi/plugin.hpp> 46 namespace po = boost::program_options; 48 #include <program_options_ex.hpp> 47 49 48 50 -
modules/NRPEServer/NRPEServer.cpp
r81e420c ra78a985 23 23 #include <strEx.h> 24 24 #include <time.h> 25 #include <config.h>25 //#include <config.h> 26 26 #include "handler_impl.hpp" 27 27 -
modules/NRPEServer/handler_impl.cpp
rd7e265d ra78a985 3 3 #include <boost/asio.hpp> 4 4 #include "handler_impl.hpp" 5 #include <config.h> 5 6 6 7 nrpe::packet handler_impl::handle(nrpe::packet p) { -
modules/NRPEServer/stdafx.h
r1f24a1c ra78a985 47 47 #endif 48 48 49 #include <config.h> 49 #include <common.hpp> 50 #include <strEx.h> 50 51 #include <utils.h> 51 52 -
modules/NSClientServer/NSClientSocket.cpp
rb8c44b4 ra78a985 12 12 } 13 13 14 15 #define RECV_BUFFER_LEN 102416 14 17 15 std::string NSClientSocket::parseRequest(std::string buffer) { -
modules/PythonScript/script_wrapper.hpp
ra14aa07 ra78a985 104 104 public: 105 105 static boost::shared_ptr<command_wrapper> create() { 106 NSC_DEBUG_MSG_STD(_T("<<<CREATING NEW>>>"));107 106 return boost::shared_ptr<command_wrapper>(new command_wrapper(nscapi::plugin_singleton->get_core())); 108 107 } -
modules/RemoteConfiguration/RemoteConfiguration.h
r739db5a ra78a985 20 20 ***************************************************************************/ 21 21 NSC_WRAPPERS_MAIN(); 22 #include <config.h>22 //#include <config.h> 23 23 #include <strEx.h> 24 24 #include <utils.h> -
modules/Scheduler/Scheduler.h
r81e420c ra78a985 20 20 ***************************************************************************/ 21 21 NSC_WRAPPERS_MAIN(); 22 #include <config.h>22 //#include <config.h> 23 23 #include <strEx.h> 24 24 -
modules/SysTray/SysTray.cpp
r5da0459 ra78a985 23 23 #include "TrayIcon.h" 24 24 #include <ServiceCmd.h> 25 #include <config.h>25 //#include <config.h> 26 26 #include <Winwlx.h> 27 27 #include <sysinfo.h> -
modules/WEBConfiguration/WEBConfiguration.h
r9567d4b ra78a985 20 20 ***************************************************************************/ 21 21 NSC_WRAPPERS_MAIN(); 22 #include <config.h>22 //#include <config.h> 23 23 #include <strEx.h> 24 24 #include <utils.h> -
version.hpp
ra14aa07 ra78a985 1 1 #ifndef VERSION_HPP 2 2 #define VERSION_HPP 3 #define PRODUCTVER 0,4,0, 864 #define STRPRODUCTVER "0,4,0, 86"5 #define STRPRODUCTDATE "2011-09-0 3"3 #define PRODUCTVER 0,4,0,96 4 #define STRPRODUCTVER "0,4,0,96" 5 #define STRPRODUCTDATE "2011-09-05" 6 6 #endif // VERSION_HPP -
version.txt
ra14aa07 ra78a985 1 1 version=0.4.0 2 build= 863 date=2011-09-0 32 build=96 3 date=2011-09-05
Note: See TracChangeset
for help on using the changeset viewer.








