]> git.stg.codes - stg.git/blobdiff - stglibs/srvconf.lib/parsers/get_user.h
Added handling of "AuthBy" info.
[stg.git] / stglibs / srvconf.lib / parsers / get_user.h
index c8c371d767db8cf738bf3a6bb376493a61842863..ffd6f2248d54649d69b2a0e3c16e9e234e82f70e 100644 (file)
@@ -22,8 +22,8 @@
 #ifndef __STG_STGLIBS_SRVCONF_PARSER_GET_USER_H__
 #define __STG_STGLIBS_SRVCONF_PARSER_GET_USER_H__
 
-#include "parser.h"
-#include "property_parsers.h"
+#include "base.h"
+#include "property.h"
 
 #include "stg/servconf_types.h"
 
@@ -37,11 +37,13 @@ namespace GET_USER
 class PARSER: public STG::PARSER
 {
 public:
-    PARSER();
+    typedef GET_USER::INFO INFO;
+
+    PARSER(CALLBACK f, void * data);
     virtual ~PARSER();
     int  ParseStart(const char * el, const char ** attr);
     void ParseEnd(const char * el);
-    void SetCallback(CALLBACK f, void * data);
+    void Failure(const std::string & reason) { callback(false, reason, info, data); }
 
 private:
     PROPERTY_PARSERS propertyParsers;
@@ -54,6 +56,7 @@ private:
 
     void ParseUser(const char * el, const char ** attr);
     void ParseUserParams(const char * el, const char ** attr);
+    void ParseAuthBy(const char * el, const char ** attr);
 };
 
 } // namespace GET_USER