aboutsummaryrefslogtreecommitdiffstats
path: root/util/httpstream.lua
Commit message (Collapse)AuthorAgeFilesLines
* util.httpstream: For HTTP client responses, changing properties ↵Waqas Hussain2010-12-191-1/+4
| | | | responseversion and responseheaders to httpversion and httpheaders, to match HTTP server requests.
* util.httpstream: A little cleanup of the HTTP path.Waqas Hussain2010-12-191-1/+1
|
* util.httpstream: Added support for chunked transfer encoding.Waqas Hussain2010-11-061-1/+12
|
* util.httpstream: Fixed a possible string to number comparison error.Waqas Hussain2010-11-061-1/+2
|
* util.httpstream: Don't attempt to read response body for HEAD requests, or ↵Waqas Hussain2010-11-061-9/+16
| | | | when status code indicates no body is present.
* util.httpstream: Added support for an options callback, to allow passing ↵Waqas Hussain2010-11-061-3/+3
| | | | per-message options to the parser.
* util.httpstream: A little refactoring of the coroutine control flow.Waqas Hussain2010-11-061-3/+5
|
* util.httpstream: Added support for HTTP response parsing.Waqas Hussain2010-11-051-24/+55
|
* util.httpstream: Fixed a nil variable access introduced in the last commit.Waqas Hussain2010-11-051-0/+1
|
* util.httpstream: Move HTTP header parsing into its own function.Waqas Hussain2010-11-051-8/+10
|
* util.httpstream: Refactored and simplified code to improve readability.Waqas Hussain2010-09-171-19/+14
|
* util.httpstream: Removed unused variables.Waqas Hussain2010-09-171-5/+0
|
* util.httpstream: Initial commit of the new HTTP parser.Waqas Hussain2010-09-041-0/+89