aboutsummaryrefslogtreecommitdiff
path: root/src/http.lua (follow)
Commit message (Collapse)AuthorAgeFilesLines
* HTTP.request was not returning response for body-less requests.Diego Nehab2001-09-181-19/+20
|
* Changed HTTP.get and HTTP.post to return status code instead ofDiego Nehab2001-09-181-4/+4
| | | | status line information. Who cares about the rest of the line, anyways...
* Simple HTTP functions can deal with table arguments also.Diego Nehab2001-09-121-30/+71
|
* Minor documentation changes.Diego Nehab2001-08-071-52/+52
| | | | | Constants were moved to Public table. Updated to use new fast concatenation module (concat.lua).
* Rewritten to comply to LTN7 (Modules & Packages).Diego Nehab2001-07-291-245/+311
| | | | | | | | | As a result, there have been some API changes. Parameter and return values are now passed inside tables. Automatic redirection and automatic authentication are better controlled, with loop detection. Implementation is more RFCish, conforming to RFC2616. URL parsing has been moved to an external library, to be shared with FTP.
* Block size increased.Diego Nehab2001-06-071-1/+1
|
* Streaming by callbacks implemented.Diego Nehab2001-06-061-158/+231
|
* HTTP message bodies are transfered using a callback to return body partsDiego Nehab2001-05-211-114/+200
| | | | chunk by chunk.
* HTTP is now generic, with function http_request.Diego Nehab2001-01-251-167/+258
| | | | RFC is more strictly followed.
* Initial revisionDiego Nehab2000-12-291-0/+312