mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 14:07:37 +03:00
Added streaming parser for structured data format.
Added JSON streaming parser. Note that currently JSON parser ignores frac and exp parts of number construct.
This commit is contained in:
parent
c7131c14fe
commit
57b46d5123
15 changed files with 2087 additions and 0 deletions
|
@ -92,6 +92,15 @@ XmlRpcRequestParserController::getCurrentFrameValue() const
|
|||
return currentFrame_.value_;
|
||||
}
|
||||
|
||||
void XmlRpcRequestParserController::reset()
|
||||
{
|
||||
while(!frameStack_.empty()) {
|
||||
frameStack_.pop();
|
||||
}
|
||||
currentFrame_.reset();
|
||||
methodName_.clear();
|
||||
}
|
||||
|
||||
} // namespace rpc
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue