]> git.stg.codes - stg.git/blobdiff - stglibs/srvconf.lib/include/stg/servconf_types.h
Added services management.
[stg.git] / stglibs / srvconf.lib / include / stg / servconf_types.h
index 1af9d5abf1d27a60722844b4a9d3e0c3b828155e..6f454bc365d72d7788065f61018611116dc62a7b 100644 (file)
 
 #define  ENC_MSG_LEN    (8)
 
+struct ADMIN_CONF;
+struct TARIFF_DATA;
+struct SERVICE_CONF;
+
 namespace STG
 {
 
@@ -65,6 +69,13 @@ confLoginCipher,
 confData
 };
 
+namespace SIMPLE
+{
+
+typedef void (* CALLBACK)(bool result, const std::string & reason, void * data);
+
+} // namespace SIMPLE
+
 namespace AUTH_BY
 {
 
@@ -90,12 +101,12 @@ typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO &
 
 } // namespace SERVER_INFO
 
-namespace CHECK_USER
+namespace RAW_XML
 {
 
-typedef int (* CALLBACK)(bool result, const std::string & reason, void * data);
+typedef void (* CALLBACK)(bool result, const std::string & reason, const std::string & response, void * data);
 
-} // namespace CHECK_USER
+}
 
 namespace GET_USER
 {
@@ -148,17 +159,51 @@ typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO &
 
 } // namespace GET_USERS
 
-namespace CHG_USER
+namespace GET_ADMIN
 {
 
-typedef void (* CALLBACK)(bool result, const std::string & reason, void * data);
+typedef ADMIN_CONF INFO;
+typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data);
 
 }
 
-namespace SEND_MESSAGE
+namespace GET_ADMINS
 {
 
-typedef void (* CALLBACK)(bool result, const std::string & reason, void * data);
+typedef std::vector<GET_ADMIN::INFO> INFO;
+typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data);
+
+}
+
+namespace GET_TARIFF
+{
+
+typedef TARIFF_DATA INFO;
+typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data);
+
+}
+
+namespace GET_TARIFFS
+{
+
+typedef std::vector<GET_TARIFF::INFO> INFO;
+typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data);
+
+}
+
+namespace GET_SERVICE
+{
+
+typedef SERVICE_CONF INFO;
+typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data);
+
+}
+
+namespace GET_SERVICES
+{
+
+typedef std::vector<GET_SERVICE::INFO> INFO;
+typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data);
 
 }