X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/7df336e60c959c440b2c330f7a7ca9b0251db2a1..0907aa4037b12b6b88ee24495d4577a064d4f8db:/projects/stargazer/plugins/configuration/sgconfig/parser_server_info.cpp diff --git a/projects/stargazer/plugins/configuration/sgconfig/parser_server_info.cpp b/projects/stargazer/plugins/configuration/sgconfig/parser_server_info.cpp index 299b520c..1b47d571 100644 --- a/projects/stargazer/plugins/configuration/sgconfig/parser_server_info.cpp +++ b/projects/stargazer/plugins/configuration/sgconfig/parser_server_info.cpp @@ -21,7 +21,9 @@ #include "parser_server_info.h" -#include "stg/common.h" +#include "stg/settings.h" +#include "stg/users.h" +#include "stg/tariffs.h" #include "stg/version.h" #include "stg/const.h" @@ -44,16 +46,16 @@ void GET_SERVER_INFO::CreateAnswer() utsn.machine + " " + utsn.nodename; - answer = GetOpenTag() + "" + - "" + - "" + - "" + - "" + - "" + - ""; + m_answer = std::string("" + + "" + + "" + + "" + + "" + + "" + + ""; for (size_t i = 0; i< DIR_NUM; i++) - answer += ""; + m_answer += ""; - answer += GetCloseTag(); + m_answer += ""; }