log net/http/parser.lua @ 8223:adfffc5b4e2a

age author description
Thu, 18 Aug 2016 14:50:06 +0200 Kim Alvefur net.http.parser: Allow limits to be configurable via options callback
Thu, 18 Aug 2016 14:48:42 +0200 Kim Alvefur net.http.parser: Add a limit on maximum buffer size, default to 20M
Thu, 18 Aug 2016 14:47:58 +0200 Kim Alvefur net.http.parser: Add a limit on content length, default to 10M
Sat, 13 Aug 2016 20:19:08 +0200 Kim Alvefur net.http.parser: Buffer into a table to reduce GC pressure, collapse to string when needed (fixes #603)
Sat, 13 Aug 2016 15:09:43 +0200 Kim Alvefur net.http.parser: Remove unused argument [luacheck]
Tue, 18 Nov 2014 17:40:37 +0000 Matthew Wild net.http.parser: Fix whitespace/indentation
Mon, 10 Nov 2014 14:47:33 -0500 daurnimator net.http.parser: Fix chunked encoding parsing across packet boundaries.
Wed, 03 Sep 2014 18:49:41 +0100 Matthew Wild net.http.parser: Support status code 101 and allow handling of the received data by someone else
Mon, 15 Apr 2013 21:25:59 +0100 Matthew Wild net.http.parser: Remove accidentally-committed debugging
Mon, 15 Apr 2013 21:21:57 +0100 Matthew Wild net.http.parser: Fix off-by-one error in chunked encoding parser
Thu, 11 Apr 2013 20:01:03 +0100 Matthew Wild net.http.parser: Fix chunked encoding response parsing, and make it more robust
Thu, 11 Apr 2013 19:58:53 +0100 Matthew Wild net.http.parser: Convert status_code to a number before trying to compare it to numbers
Thu, 11 Apr 2013 17:39:10 +0100 Matthew Wild net.http.parser: Break when no more usable data in buffer (client part of e5ec60dfb202)
Thu, 11 Apr 2013 17:37:37 +0100 Matthew Wild net.http.parser: Depend on util.http instead of net.http for urlencode