git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Correcting error data transfer in method GetParamValue
[stg.git]
/
projects
/
stargazer
/
plugins
/
configuration
/
sgconfig
/
configproto.h
diff --git
a/projects/stargazer/plugins/configuration/sgconfig/configproto.h
b/projects/stargazer/plugins/configuration/sgconfig/configproto.h
index 15809c3c7fd9a6e9848b505691e230c64930f862..b8b01f024da3f1f0d8daf32ce7ea50231678ec13 100644
(file)
--- a/
projects/stargazer/plugins/configuration/sgconfig/configproto.h
+++ b/
projects/stargazer/plugins/configuration/sgconfig/configproto.h
@@
-52,7
+52,7
@@
//-----------------------------------------------------------------------------
class CONFIGPROTO {
public:
//-----------------------------------------------------------------------------
class CONFIGPROTO {
public:
- CONFIGPROTO();
+ CONFIGPROTO(
PLUGIN_LOGGER & l
);
~CONFIGPROTO();
void SetPort(uint16_t port);
~CONFIGPROTO();
void SetPort(uint16_t port);
@@
-88,12
+88,13
@@
private:
std::list<std::string> requestList;
uint32_t adminIP;
std::string adminLogin;
std::list<std::string> requestList;
uint32_t adminIP;
std::string adminLogin;
+ std::string adminPassword;
uint16_t port;
pthread_t thrReciveSendConf;
bool nonstop;
int state;
ADMIN * currAdmin;
uint16_t port;
pthread_t thrReciveSendConf;
bool nonstop;
int state;
ADMIN * currAdmin;
-
STG_LOGGER & WriteServLog
;
+
PLUGIN_LOGGER & logger
;
int listenSocket;
int listenSocket;
@@
-120,7
+121,7
@@
private:
ADMINS * admins;
BASE_PARSER * currParser;
ADMINS * admins;
BASE_PARSER * currParser;
-
vector<BASE_PARSER *>
dataParser;
+
std::vector<BASE_PARSER *>
dataParser;
XML_Parser xmlParser;
XML_Parser xmlParser;