Adds support to JSON request body parser

This commit is contained in:
Felipe Zimmerle
2016-06-29 18:31:27 -03:00
parent 2477470607
commit 90adb53935
10 changed files with 551 additions and 4 deletions

View File

@@ -76,6 +76,7 @@ class Action;
}
namespace RequestBodyProcessor {
class XML;
class JSON;
}
namespace operators {
class Operator;
@@ -337,6 +338,7 @@ class Transaction {
std::list<std::string> m_matched;
RequestBodyProcessor::XML *m_xml;
RequestBodyProcessor::JSON *m_json;
private:
std::string *m_ARGScombinedSizeStr;