Implemented chunked transfer encoding support.

This commit is contained in:
Thulinma 2012-12-31 19:13:04 +01:00
parent 05416da269
commit 7dbbc6c892
2 changed files with 45 additions and 1 deletions

View file

@ -36,6 +36,8 @@ namespace HTTP {
private:
bool seenHeaders;
bool seenReq;
bool getChunks;
unsigned int doingChunk;
bool parse(std::string & HTTPbuffer);
void parseVars(std::string data);
std::string builder;