git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Always think about \0 and block boundry during encryption.
[stg.git]
/
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 24c04849ca9896b1dba2aafd94f905db4fb9cf46..fe29ec09daaf463e0684991c7eebd99b9c21b0ab 100644
(file)
--- a/
stglibs/srvconf.lib/parsers/get_service.h
+++ b/
stglibs/srvconf.lib/parsers/get_service.h
@@
-37,16
+37,19
@@
namespace GET_SERVICE
class PARSER: public STG::PARSER
{
public:
class PARSER: public STG::PARSER
{
public:
- PARSER(CALLBACK f, void * data);
+ typedef GET_SERVICE::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);
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;
private:
PROPERTY_PARSERS propertyParsers;
CALLBACK callback;
void * data;
INFO info;
+ std::string encoding;
int depth;
bool parsingAnswer;
std::string error;
int depth;
bool parsingAnswer;
std::string error;