| Commit message (Expand) | Author | Age | Files | Lines |
* | net.server_select: Fix global access | Kim Alvefur | 2013-01-07 | 1 | -0/+1 |
* | net.server_event: Optimize socket write buffers (don't do buf=buf..newdata). | Waqas Hussain | 2013-01-06 | 1 | -5/+9 |
* | net.server: Don't return anything from config-reloaded hook, fixes logrotate ... | Kim Alvefur | 2012-12-29 | 1 | -2/+1 |
* | net.server_select: Pause servers while they are full | Kim Alvefur | 2012-12-28 | 1 | -0/+4 |
* | net.server_select: Add pause and resume methods | Kim Alvefur | 2012-12-28 | 1 | -0/+19 |
* | net.server_event: Destroy interfaces immediately, fixes reopening of servers. | Kim Alvefur | 2012-12-28 | 1 | -8/+2 |
* | net.server_event: Remove comments about not closing event handlers from withi... | Kim Alvefur | 2012-12-28 | 1 | -4/+3 |
* | net.dns: Close voided sockets, so they don't stay in net.server | Kim Alvefur | 2012-12-22 | 1 | -0/+1 |
* | net.dns: Clean up query list when a server is marked down | Matthew Wild | 2012-12-22 | 1 | -0/+5 |
* | net.http.parser: Skip url.parse when we don't have a full URL (also fixes tra... | Waqas Hussain | 2012-12-21 | 1 | -1/+8 |
* | net.http.parser: Fix syntax error introduced in c5edb08fc7cb. | Waqas Hussain | 2012-12-03 | 1 | -1/+1 |
* | net.http.parser: Collapse multiple consecutive slashes in a path to a single ... | Matthew Wild | 2012-11-29 | 1 | -1/+1 |
* | net.server: Fix when no network_settings set and using libevent | Kim Alvefur | 2012-11-23 | 1 | -1/+1 |
* | net.server: Make server_* configurable in the config file. | Kim Alvefur | 2012-11-23 | 1 | -0/+32 |
* | net.server_select: Better names for config options (thanks MattJ) | Kim Alvefur | 2012-11-23 | 1 | -10/+10 |
* | net.server_event: Replace usage of string.len() with # operator | Matthew Wild | 2012-07-26 | 1 | -2/+1 |
* | net.server_event: Don't emit empty packets, check for errors first. (fixes #287) | Kim Alvefur | 2012-07-25 | 1 | -4/+4 |
* | net.server_event: Remove unused variables and imports | Matthew Wild | 2012-07-22 | 1 | -9/+1 |
* | net.server_select: Remove unused variables and imports | Matthew Wild | 2012-07-22 | 1 | -5/+0 |
* | net.server_select: Remove extraneous variable | Matthew Wild | 2012-07-22 | 1 | -1/+0 |
* | net.server_select: Never call ondisconnect() directly, go via handler:close()... | Matthew Wild | 2012-07-22 | 1 | -14/+11 |
* | Merge with Zash | Matthew Wild | 2012-07-22 | 1 | -2/+2 |
|\ |
|
| * | net.http: Use base64 from util.encodings instead of luasocket | Kim Alvefur | 2012-07-07 | 1 | -2/+2 |
* | | net.http: Don't call ondisconnect manually, net.server now calls it on close | Matthew Wild | 2012-07-22 | 1 | -1/+0 |
* | | net.server_select, net.server_event: Change semantics of conn:close() - alway... | Matthew Wild | 2012-07-22 | 2 | -26/+32 |
|/ |
|
* | net.http.parser: Break loop when no more usable data in buffer | Matthew Wild | 2012-05-25 | 1 | -0/+2 |
* | net.server_event: Internal changes to get plain-SSL outgoing connections work... | Matthew Wild | 2012-05-24 | 1 | -3/+3 |
* | net.server_event: Assume wrapclient() is taking a new connection, and call on... | Matthew Wild | 2012-05-24 | 1 | -1/+1 |
* | net.server_select: Don't close client connections when closing a server (it w... | Matthew Wild | 2012-05-23 | 1 | -7/+1 |
* | net.server_select: Call ondisconnect handler, even if we closed the socket ou... | Matthew Wild | 2012-05-23 | 1 | -0/+4 |
* | net.server_select: Return error when SSL handshake fails immediately (thanks ... | Matthew Wild | 2012-05-18 | 1 | -3/+6 |
* | net.http.parser: Keep the Host header no host is present in the URI | Kim Alvefur | 2012-05-15 | 1 | -1/+1 |
* | net.http.parser: Do full URL decoding and parsing (e.g. adds request.url.quer... | Matthew Wild | 2012-05-12 | 1 | -5/+7 |
* | net.http: Fix urlencode to not encode unreserved characters, so I can guiltle... | Matthew Wild | 2012-05-12 | 1 | -1/+1 |
* | net.server: server_select != server_event (thanks Nulani, Florob) | Matthew Wild | 2012-05-03 | 1 | -1/+1 |
* | net.server, net.timer, net.server_select: Rearrange dependencies between thes... | Matthew Wild | 2012-05-03 | 2 | -16/+3 |
* | net.connlisteners: Add COMPAT stub, use portmanager! | Matthew Wild | 2012-04-28 | 1 | -0/+15 |
* | net.http.server: Code cleanup/adjustment now that send_response() accepts res... | Matthew Wild | 2012-04-28 | 1 | -3/+1 |
* | net.http.server: Use response.body if it exists and body is not specified to ... | Matthew Wild | 2012-04-28 | 1 | -1/+1 |
* | net.httpserver: Add compatibility stub | Matthew Wild | 2012-04-28 | 1 | -0/+15 |
* | net.http.server: Remove unused imports and variables (fixes traceback due to ... | Matthew Wild | 2012-04-28 | 1 | -4/+2 |
* | net.httpserver, net.httpserver_listener: Remove (obsoleted by net.http.* and ... | Matthew Wild | 2012-04-28 | 2 | -284/+0 |
* | net.http.server: Try default_host if client sent no host anywhere, otherwise.... | Matthew Wild | 2012-04-28 | 1 | -4/+4 |
* | net.http.server: Fix traceback on missing host header (thanks darkrain) | Matthew Wild | 2012-04-28 | 1 | -2/+1 |
* | net.http.server, mod_http: Support http_default_host config option to specify... | Matthew Wild | 2012-04-27 | 1 | -41/+56 |
* | net.http.server: Improve comment | Matthew Wild | 2012-04-27 | 1 | -1/+1 |
* | net.http.server: Remove unused variable | Matthew Wild | 2012-04-27 | 1 | -1/+0 |
* | net.http.server: Correctly cache results of handler indexing, and also cache ... | Matthew Wild | 2012-04-27 | 1 | -10/+14 |
* | net.http.codes: Add missing 418 status code | Matthew Wild | 2012-04-27 | 1 | -0/+1 |
* | mod_http_files, net.http.parser: Move path normalization to net.http.parser s... | Matthew Wild | 2012-04-26 | 1 | -1/+19 |