| Commit message (Expand) | Author | Age | Files | Lines |
* | net.http: Add request.url, which is the original full URL as a string | Matthew Wild | 2017-04-21 | 1 | -0/+1 |
* | net.http: Fire new events: pre-request, request-connection-error, request, re... | Matthew Wild | 2017-04-21 | 1 | -1/+19 |
* | net.http: Allow creation of http client objects, with custom options | Matthew Wild | 2017-04-21 | 1 | -3/+22 |
* | net.http: Pass error all the way to callback | Kim Alvefur | 2017-04-02 | 2 | -4/+4 |
* | net.server_event: Also replace 'ondrain' when setting new listeners (thanks G... | Kim Alvefur | 2017-01-04 | 1 | -0/+1 |
* | net.http: Strip trailing whitespace | Kim Alvefur | 2016-12-30 | 1 | -1/+1 |
* | net.http: Remove unused imports [luacheck] | Kim Alvefur | 2016-12-30 | 1 | -3/+3 |
* | net.websocket: Ignore unused argument warnings [luacheck] | Kim Alvefur | 2016-12-04 | 1 | -3/+3 |
* | Merge 0.9->0.10 | Kim Alvefur | 2016-11-24 | 1 | -0/+1 |
|\ |
|
| * | net.server_select: Prevent writes after a handler is closed (fixes #783 I hope) | Kim Alvefur | 2016-11-22 | 1 | -0/+1 |
* | | net.server_event: Restore destruction of socket on read timeout (lost since e... | Kim Alvefur | 2016-10-08 | 1 | -0/+4 |
* | | net.http.parser: Don't collapse buffer when expecting a chunk and not enough ... | Kim Alvefur | 2016-08-26 | 1 | -0/+3 |
* | | net.http.parser: Fix missing buffer length adjustment when parsing chunked st... | Kim Alvefur | 2016-08-26 | 1 | -0/+1 |
* | | net.http.server: Add luacheck annotations | Kim Alvefur | 2016-08-18 | 1 | -2/+2 |
* | | Merge 0.9->0.10 | Kim Alvefur | 2016-08-18 | 2 | -8/+34 |
|\| |
|
| * | net.http.server: Expose way to set http server options | Kim Alvefur | 2016-08-18 | 1 | -1/+8 |
| * | net.http.parser: Allow limits to be configurable via options callback | Kim Alvefur | 2016-08-18 | 1 | -2/+2 |
| * | net.http.parser: Add a limit on maximum buffer size, default to 20M | Kim Alvefur | 2016-08-18 | 1 | -0/+2 |
| * | net.http.parser: Add a limit on content length, default to 10M | Kim Alvefur | 2016-08-18 | 1 | -0/+2 |
| * | net.http.parser: Buffer into a table to reduce GC pressure, collapse to strin... | Kim Alvefur | 2016-08-13 | 1 | -7/+22 |
* | | net.http.codes: Add HTTP status code 451 Unavailable For Legal Reasons from R... | Kim Alvefur | 2016-08-13 | 1 | -0/+1 |
* | | net.http.codes: Remove used argument | Kim Alvefur | 2016-08-13 | 1 | -1/+1 |
* | | net.http.parser: Remove unused argument [luacheck] | Kim Alvefur | 2016-08-13 | 1 | -1/+1 |
* | | net.http.server: Set blocksize for serving data from FDs to 64k (sweet spot o... | Kim Alvefur | 2016-08-08 | 1 | -1/+1 |
* | | net.dns: remove unused variable unpack [luacheck] | Anton Shestakov | 2016-07-28 | 1 | -2/+2 |
* | | net.server_select: remove unused import [luacheck] | Anton Shestakov | 2016-07-28 | 1 | -1/+0 |
* | | net.http: Add quotes around ids in log messages | Matthew Wild | 2016-07-27 | 1 | -3/+3 |
* | | net.server_select: remove unused one-letter loop variable [luacheck] | Anton Shestakov | 2016-07-14 | 1 | -1/+1 |
* | | net.dns: remove unused one-letter loop variables [luacheck] | Anton Shestakov | 2016-07-14 | 1 | -4/+4 |
* | | net.http.server: Add response method for reading response body from a file ha... | Kim Alvefur | 2016-07-11 | 1 | -0/+42 |
* | | net.dns: don't use "for s,s in pairs..." (unused loop variable s) [luacheck] | Anton Shestakov | 2016-07-09 | 1 | -2/+2 |
* | | net.adns: remove unused local variables t_insert and t_remove [luacheck] | Anton Shestakov | 2016-07-09 | 1 | -1/+0 |
* | | net.dns: remove unused one-letter loop variables [luacheck] | Anton Shestakov | 2016-07-09 | 1 | -4/+4 |
* | | net.server_select: remove unused one-letter loop variables [luacheck] | Anton Shestakov | 2016-07-09 | 1 | -2/+2 |
* | | net.http: Add log messages for requests, including their id (so "calling call... | Matthew Wild | 2016-07-07 | 1 | -1/+13 |
* | | net.http: Add request.id to every request object (can be overridden by provid... | Matthew Wild | 2016-07-07 | 1 | -0/+4 |
* | | net.server_event: Schedule another read callback if there is still data left ... | Kim Alvefur | 2016-05-04 | 1 | -1/+5 |
* | | net.server_event: Collect entire one line function on one line | Kim Alvefur | 2016-05-04 | 1 | -4/+1 |
* | | Merge 0.9->0.10 | Kim Alvefur | 2016-04-19 | 1 | -1/+1 |
|\| |
|
| * | net.server_event: Check the buffer *length*, not the buffer itself (Fixes 100... | Kim Alvefur | 2016-04-19 | 1 | -1/+1 |
* | | Merge 0.9->0.10 | Kim Alvefur | 2016-04-19 | 1 | -4/+3 |
|\| |
|
| * | net.server_event: Return the correct value as timeout | Kim Alvefur | 2016-04-19 | 1 | -1/+1 |
| * | net.server_event: Fix traceback if event re-added during starttls | Kim Alvefur | 2016-04-19 | 1 | -4/+3 |
* | | Merge 0.9->0.10 | Kim Alvefur | 2016-04-19 | 1 | -0/+4 |
|\| |
|
| * | net.server_event: Re-add write event if writebuffer is non-empty after write ... | Kim Alvefur | 2016-04-19 | 1 | -0/+4 |
* | | server_event: addclient: wrapclient already calls startconnection for us [bac... | daurnimator | 2013-12-18 | 1 | -2/+1 |
* | | server_event: Split long list of assignments into multiple lines for readability | Kim Alvefur | 2016-04-05 | 1 | -4/+7 |
* | | server_event: Fix indentation (again) | Kim Alvefur | 2016-04-05 | 1 | -526/+527 |
* | | net.server_select: Remove do-nothing os_difftime calls [backported from trunk] | daurnimator | 2015-01-19 | 1 | -5/+3 |
* | | net.dns: Import unpack() in forward-compatible way (Fixes compat with Lua5.2+) | Kim Alvefur | 2016-03-28 | 1 | -2/+2 |