X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/1b2ab8e6d556a8ed30d4feadc72263b3f4c86665..76d211bbdf3a57afd72b3f3ac736c42cc17e3cac:/stglibs/srvconf.lib/parsers/get_service.h

diff --git a/stglibs/srvconf.lib/parsers/get_service.h b/stglibs/srvconf.lib/parsers/get_service.h
index 847d8bfd..fe29ec09 100644
--- a/stglibs/srvconf.lib/parsers/get_service.h
+++ b/stglibs/srvconf.lib/parsers/get_service.h
@@ -38,16 +38,18 @@ class PARSER: public STG::PARSER
 {
 public:
     typedef GET_SERVICE::INFO INFO;
-    PARSER(CALLBACK f, void * data);
+    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;