Teach HTTP parser to derive content length of multipart/byteranges bodies.

Addresses #488.
This commit is contained in:
Jon Siwek 2011-09-23 10:31:20 -05:00
parent a2edff9385
commit ee30268164
3 changed files with 47 additions and 0 deletions

View file

@ -95,6 +95,7 @@ public:
virtual void EndOfData();
MIME_Entity* Parent() const { return parent; }
int MIMEContentType() const { return content_type; }
StringVal* ContentType() const { return content_type_str; }
StringVal* ContentSubType() const { return content_subtype_str; }
int ContentTransferEncoding() const { return content_encoding; }