]> git.stg.codes - stg.git/blobdiff - stglibs/srvconf.lib/parsers/auth_by.h
Merge branch 'stg-2.409-radius'
[stg.git] / stglibs / srvconf.lib / parsers / auth_by.h
index 31f85769e5302417f8a915a76b7ddd89293db1ac..5b2dfe52fb6cbf9b3ef1f32c93da99902cf71f11 100644 (file)
@@ -35,7 +35,7 @@ namespace AUTH_BY
 class PARSER: public STG::PARSER
 {
 public:
-    PARSER(CALLBACK f, void * data);
+    PARSER(CALLBACK f, void * data, const std::string & encoding);
     int  ParseStart(const char * el, const char ** attr);
     void ParseEnd(const char * el);
     void Failure(const std::string & reason) { callback(false, reason, info, data); }
@@ -43,6 +43,7 @@ public:
 private:
     CALLBACK callback;
     void * data;
+    std::string encoding;
     int depth;
     bool parsingAnswer;
     INFO info;