]> git.stg.codes - stg.git/blobdiff - stglibs/srvconf.lib/parsers/server_info.h
Merge branch 'stg-2.409-radius'
[stg.git] / stglibs / srvconf.lib / parsers / server_info.h
index 9ac23ee8437d189bd8c68538f696fd2d52f85691..039063890866bac13f783a1ef15bd9407ea1938b 100644 (file)
@@ -22,8 +22,8 @@
 #ifndef __STG_STGLIBS_SRVCONF_PARSER_SERVER_INFO_H__
 #define __STG_STGLIBS_SRVCONF_PARSER_SERVER_INFO_H__
 
-#include "parser.h"
-#include "property_parsers.h"
+#include "base.h"
+#include "property.h"
 
 #include "stg/servconf_types.h"
 
@@ -37,15 +37,16 @@ namespace SERVER_INFO
 class PARSER: public STG::PARSER
 {
 public:
-    PARSER();
+    PARSER(CALLBACK f, void * data, const std::string & encoding);
     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;
     CALLBACK callback;
     void * data;
+    std::string encoding;
     int depth;
     bool parsingAnswer;
     INFO info;