On Mon, Mar 19, 2012 at 17:01, Mark Volkmann <[email protected]> wrote: > What determines the size of the chunks passed to listeners of http > module request data events?
It's the size of whatever request data there is in the current TCP packet unless the packet contains multiple chunks of the "Transfer-Encoding: chunked" variety, in that case you get a 'data' event for each chunk. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
