]> git.stg.codes - stg.git/blobdiff - stglibs/srvconf.lib/parsers/get_corp.h
Merge branch 'stg-2.409-radius'
[stg.git] / stglibs / srvconf.lib / parsers / get_corp.h
index 80b1e9439e0b48856a44fb88b7bf7dc8d43997ee..b9d879833dad252cedcc8176fbd78dd32dbe949d 100644 (file)
@@ -37,16 +37,20 @@ namespace GET_CORP
 class PARSER: public STG::PARSER
 {
 public:
-    PARSER(CALLBACK f, void * data);
+    typedef GET_CORP::INFO INFO;
+
+    PARSER(CALLBACK f, void * data, const std::string & encoding);
     virtual ~PARSER();
     int  ParseStart(const char * el, const char ** attr);
     void ParseEnd(const char * el);
+    void Failure(const std::string & reason) { callback(false, reason, info, data); }
 
 private:
     PROPERTY_PARSERS propertyParsers;
     CALLBACK callback;
     void * data;
     INFO info;
+    std::string encoding;
     int depth;
     bool parsingAnswer;
     std::string error;