| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge 0.9->0.10 | Kim Alvefur | 2016-01-22 | 3 | -8/+28 |
|\ |
|
| * | server_select: Add logging of when servers are paused and resumed | Kim Alvefur | 2016-01-22 | 1 | -0/+2 |
| * | server_select: Pause and mark server as full if accepting a client fails (fix... | Kim Alvefur | 2016-01-22 | 1 | -0/+2 |
| * | server_select: Retry accepting clients from full servers after 10s (matches l... | Kim Alvefur | 2016-01-22 | 2 | -1/+12 |
| * | server_select: Keep track of which server listeners are full | Kim Alvefur | 2016-01-22 | 1 | -0/+5 |
| * | net.dns: Remember query only after it was sent, in case it was not (fixes #598) | Kim Alvefur | 2016-01-21 | 1 | -5/+5 |
* | | net.http.server: Return from listen_on() whatever net.server.addserver() returns | Kim Alvefur | 2016-01-16 | 1 | -1/+1 |
* | | net.server_select: Add 'server' method to client connections (present in serv... | Kim Alvefur | 2016-01-09 | 1 | -0/+3 |
* | | Merge 0.9->0.10 | Kim Alvefur | 2016-01-08 | 1 | -2/+4 |
|\| |
|
| * | Backout 88d54bec26b7 prior to release, as it certainly requires more testing0.9.9 | Matthew Wild | 2016-01-08 | 1 | -1/+3 |
| * | net.dns: Allow a zone id in resolv.conf (eg like %eth0) | Kim Alvefur | 2016-01-04 | 1 | -1/+1 |
| * | net.dns: Support IPv6 addresses in resolv.conf [Backported from 0.10] | Florian Zeitz | 2013-06-18 | 1 | -6/+13 |
* | | server_select: Forward the actual TLS handshake error message | Kim Alvefur | 2016-01-03 | 1 | -2/+3 |
* | | net.server_select: Close all connections when quitting (and not just stepping... | Matthew Wild | 2016-01-02 | 1 | -0/+1 |
* | | net.server_event: Add conn.type == 'server' for server sockets (fixes closeal... | Matthew Wild | 2016-01-02 | 1 | -0/+1 |
* | | net.http.server: Import util.cache | Matthew Wild | 2015-12-03 | 1 | -0/+1 |
* | | net.http.server: Use new util.cache to remember wildcard event handlers | Matthew Wild | 2015-12-03 | 1 | -5/+5 |
* | | net.websocket.frames: Fix syntax error due to code copy pasting | Kim Alvefur | 2015-10-06 | 1 | -2/+2 |
* | | net.websocket.frames: Use struct packing in Lua 5.3 or struct lib if available | Kim Alvefur | 2015-10-06 | 1 | -0/+25 |
* | | net.websocket.frames: Pack and unpack 64bit ints without overflows (lua-bitop... | Kim Alvefur | 2015-10-06 | 1 | -4/+6 |
* | | net.websocket.frames: Link to documentation when bitop is missing | Kim Alvefur | 2015-10-06 | 1 | -1/+1 |
* | | net.websocket.frames: Throw an error if no bit lib is found | Kim Alvefur | 2015-10-06 | 1 | -2/+2 |
* | | net.websocket.frames: Simplify import of bitlib | Kim Alvefur | 2015-10-06 | 1 | -3/+1 |
* | | Merge | Kim Alvefur | 2015-09-25 | 1 | -3/+1 |
|\ \ |
|
| * | | Merge 0.9->0.10 | Matthew Wild | 2015-09-25 | 1 | -3/+1 |
| |\| |
|
| | * | net.dns: Unconditionally cache records found in answers | Matthew Wild | 2015-05-25 | 1 | -3/+1 |
* | | | server_event: Fix indentation | Kim Alvefur | 2015-09-25 | 1 | -5/+5 |
* | | | server_event: Put function keyword on same line as the coroutine.wrap it's be... | Kim Alvefur | 2015-09-25 | 1 | -2/+1 |
|/ / |
|
* | | server_event: Normalize indentation | Kim Alvefur | 2015-09-25 | 1 | -118/+118 |
* | | net.dns: Use new IPv4-specific socket factory if available (fixes dns on libe... | Kim Alvefur | 2015-09-25 | 1 | -1/+1 |
* | | server_event: Remove unused argument [luacheck] | Kim Alvefur | 2015-09-25 | 1 | -1/+1 |
* | | server_event: Comment out the unused vdebug function [luacheck] | Kim Alvefur | 2015-09-25 | 1 | -1/+1 |
* | | server_event: Remove unused former argument (fixes global access) [luacheck] | Kim Alvefur | 2015-09-25 | 1 | -1/+1 |
* | | server_event: Rename luaevent module variable to avoid name clash [luacheck] | Kim Alvefur | 2015-09-25 | 1 | -7/+7 |
* | | server_event: Add luacheck annotations | Kim Alvefur | 2015-09-25 | 1 | -1/+2 |
* | | server_event: Remove needless scoping and indentation | Kim Alvefur | 2015-09-25 | 1 | -579/+562 |
* | | server_event: Move local references to various functions to top of file | Kim Alvefur | 2015-09-25 | 1 | -22/+18 |
* | | server_event: Replace implementation of ordered set with a simple table set | Kim Alvefur | 2015-09-25 | 1 | -38/+6 |
* | | net/http: Use server.addclient | daurnimator | 2013-12-18 | 1 | -11/+6 |
* | | net.server_{select,event}: addclient: Use getaddrinfo to detect IP address ty... | Kim Alvefur | 2013-12-23 | 2 | -2/+17 |
* | | net.server_{select,event}: addclient: Add argument for overriding socket type | Kim Alvefur | 2013-12-23 | 2 | -4/+18 |
* | | net/server_event: pcall require ssl rather than relying on globals | daurnimator | 2013-12-18 | 1 | -15/+7 |
* | | net/server_event: add_client should have same arguments no-matter the server ... | daurnimator | 2013-12-18 | 1 | -21/+6 |
* | | net/server_select: Fix typo | daurnimator | 2013-12-18 | 1 | -1/+1 |
* | | net/server_select: addclient: Check arguments | daurnimator | 2013-12-18 | 1 | -0/+15 |
* | | net/server_select: addclient: Check for failure correctly; remove wrapconnect... | daurnimator | 2013-12-18 | 1 | -3/+3 |
* | | net/server_select: Check arguments to add_server correctly | daurnimator | 2013-12-18 | 1 | -3/+4 |
* | | net.server_{select,event}: Don't rely on LuaSocket and LuaSec being present i... | Kim Alvefur | 2015-02-23 | 2 | -11/+11 |
* | | net.*: Remove use of module() function | Kim Alvefur | 2015-02-21 | 5 | -34/+44 |
* | | net.dns: Remove resolver:new(), as it needlessly and incorrectly duplicates d... | Matthew Wild | 2015-07-06 | 1 | -11/+0 |