]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/configuration/sgconfig/configproto.h
Removed unused stuff.
[stg.git] / projects / stargazer / plugins / configuration / sgconfig / configproto.h
index 2917567ea59167e0d0d05ad5ce8de93c7ece7b74..af924928a9b1490df86ae5c4072caffe02bd344c 100644 (file)
@@ -32,6 +32,7 @@
 #include <list>
 #include <vector>
 
+#include "stg/module_settings.h"
 #include "stg/os_int.h"
 
 #include <expat.h>
@@ -62,10 +63,6 @@ public:
 
     void            SetPort(uint16_t port);
     void            SetAdmins(ADMINS * a);
-    void            SetUsers(USERS * u);
-    void            SetTariffs(TARIFFS * t);
-    void            SetStore(STORE * s);
-    void            SetStgSettings(const SETTINGS * s);
     uint32_t        GetAdminIP() const { return adminIP; }
     int             Prepare();
     int             Stop();
@@ -83,13 +80,13 @@ private:
     int             RecvLoginS(int sock);
     int             SendLoginSAnswer(int sock, int err);
     int             RecvData(int sock);
-    int             SendDataAnswer(int sock);
-    void            SendError(const char * text);
+    int             SendDataAnswer(int sock, const std::string & answer);
+    int             SendError(int sock, const std::string & text);
     void            WriteLogAccessFailed(uint32_t ip);
+    const std::string & GetDataAnswer() const { return dataAnswer; }
 
     int             ParseCommand();
 
-    std::list<std::string>      answerList;
     std::list<std::string>      requestList;
     uint32_t                    adminIP;
     std::string                 adminLogin;
@@ -100,6 +97,7 @@ private:
     int                         state;
     ADMIN *                     currAdmin;
     PLUGIN_LOGGER &             logger;
+    std::string                 dataAnswer;
 
     int                         listenSocket;