]> git.stg.codes - stg.git/blobdiff - stglibs/srvconf.lib/include/stg/servconf_types.h
Merge branch 'log-unauth-reasons'
[stg.git] / stglibs / srvconf.lib / include / stg / servconf_types.h
index 1af9d5abf1d27a60722844b4a9d3e0c3b828155e..f323e99e95a96325f10d09b89c2e466d0ba77dc9 100644 (file)
 
 #define  ENC_MSG_LEN    (8)
 
+struct ADMIN_CONF;
+struct TARIFF_DATA;
+struct SERVICE_CONF;
+struct CORP_CONF;
+
 namespace STG
 {
 
@@ -65,6 +70,24 @@ confLoginCipher,
 confData
 };
 
+namespace SIMPLE
+{
+
+typedef void (* CALLBACK)(bool result, const std::string & reason, void * data);
+
+} // namespace SIMPLE
+
+namespace GET_CONTAINER
+{
+
+template <typename INFO>
+struct CALLBACK
+{
+typedef void (* TYPE)(bool result, const std::string & reason, const std::vector<INFO> & info, void * data);
+};
+
+}
+
 namespace AUTH_BY
 {
 
@@ -90,12 +113,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
 {
@@ -140,25 +163,35 @@ typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO &
 
 } // namespace GET_USER
 
-namespace GET_USERS
+namespace GET_ADMIN
 {
 
-typedef std::vector<GET_USER::INFO> INFO;
+typedef ADMIN_CONF INFO;
 typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data);
 
-} // namespace GET_USERS
+}
 
-namespace CHG_USER
+namespace GET_TARIFF
 {
 
-typedef void (* CALLBACK)(bool result, const std::string & reason, void * data);
+typedef TARIFF_DATA INFO;
+typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data);
 
 }
 
-namespace SEND_MESSAGE
+namespace GET_SERVICE
 {
 
-typedef void (* CALLBACK)(bool result, const std::string & reason, void * data);
+typedef SERVICE_CONF INFO;
+typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data);
+
+}
+
+namespace GET_CORP
+{
+
+typedef CORP_CONF INFO;
+typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data);
 
 }