Changeset 7f9c823 in nscp for service/NSClient++.h
- Timestamp:
- 11/08/09 23:24:31 (4 years ago)
- Branches:
- master, 0.4.0, 0.4.1, 0.4.2
- Children:
- 6672c56
- Parents:
- 3b4097d
- File:
-
- 1 edited
-
service/NSClient++.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
service/NSClient++.h
rd5356c1 r7f9c823 22 22 23 23 #include <config.h> 24 #include <ServiceCmd.h> 25 #include <NTService.h> 24 #include <service/system_service.hpp> 26 25 #include "NSCPlugin.h" 27 26 #include <Mutex.h> … … 31 30 #include <com_helpers.hpp> 32 31 #include <nsclient_session.hpp> 33 32 #include <boost/thread/thread.hpp> 33 #include <boost/thread/locks.hpp> 34 34 35 35 /** … … 99 99 pluginList messageHandlers_; 100 100 std::wstring basePath; 101 MutexHandlerinternalVariables;102 MutexHandlermessageMutex;101 boost::timed_mutex internalVariables; 102 boost::timed_mutex messageMutex; 103 103 MutexRW m_mutexRW; 104 104 MutexRW m_mutexRWcmdDescriptions; … … 180 180 }; 181 181 182 typedef service_helper:: NTService<NSClientT>NSClient;182 typedef service_helper::impl<NSClientT>::system_service NSClient; 183 183 184 184 extern NSClient mainClient; // Global core instance forward declaration. 185 185 186 186 187 std::wstring Encrypt(std::wstring str, unsigned int algorithm = NSCAPI:: xor);188 std::wstring Decrypt(std::wstring str, unsigned int algorithm = NSCAPI:: xor);187 std::wstring Encrypt(std::wstring str, unsigned int algorithm = NSCAPI::encryption_xor); 188 std::wstring Decrypt(std::wstring str, unsigned int algorithm = NSCAPI::encryption_xor); 189 189 190 190 //////////////////////////////////////////////////////////////////////////
Note: See TracChangeset
for help on using the changeset viewer.








