Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | | | | | | | | Merge 0.10->trunk | Matthew Wild | 2014-04-15 | 1 | -9/+17 | |
| |\ \ \ \ \ \ \ \ \ \ | ||||||
| * \ \ \ \ \ \ \ \ \ \ | Merge 0.10->trunk | Matthew Wild | 2014-04-02 | 2 | -0/+2 | |
| |\ \ \ \ \ \ \ \ \ \ \ | ||||||
| * | | | | | | | | | | | | net.server_{select,event}: addclient: Handle missing getaddrinfo | Kim Alvefur | 2013-12-23 | 2 | -8/+4 | |
| | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | net.server_{select,event}: addclient: Use getaddrinfo to detect IP address ↵ | Kim Alvefur | 2013-12-23 | 2 | -2/+17 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | type if no socket type argument given. (Argument must be given for non-TCP) | |||||
| * | | | | | | | | | | | | net.server_{select,event}: addclient: Add argument for overriding socket type | Kim Alvefur | 2013-12-23 | 2 | -6/+22 | |
| | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | net/http: Use server.addclient | daurnimator | 2013-12-18 | 1 | -11/+6 | |
| | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | net/server: addclient: wrapclient already calls startconnection for us | daurnimator | 2013-12-18 | 1 | -2/+1 | |
| | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | net/server_event: pcall require ssl rather than relying on globals | daurnimator | 2013-12-18 | 1 | -19/+11 | |
| | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | 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 ↵ | daurnimator | 2013-12-18 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | wrapconnection call on failure | |||||
| * | | | | | | | | | | | | net/server_event: add_client should have same arguments no-matter the server ↵ | daurnimator | 2013-12-18 | 1 | -21/+6 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | backend | |||||
| * | | | | | | | | | | | | net/server_select: Check arguments to add_server correctly | daurnimator | 2013-12-18 | 1 | -3/+4 | |
| | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | net/server_select: pcall require ssl (easy to forget to require ssl) | daurnimator | 2013-12-18 | 1 | -5/+5 | |
| | | | | | | | | | | | | | ||||||
* | | | | | | | | | | | | | net.websocket: Fix handling of 'protocol' argument | Kim Alvefur | 2014-09-11 | 1 | -6/+9 | |
| |_|_|_|_|_|_|_|_|_|/ / |/| | | | | | | | | | | | ||||||
* | | | | | | | | | | | | Check Sec-WebSocket-Protocol header | Florian Zeitz | 2014-09-05 | 1 | -5/+10 | |
| | | | | | | | | | | | | ||||||
* | | | | | | | | | | | | net/websocket: Add new websocket client code | daurnimator | 2014-09-03 | 2 | -0/+459 | |
| |_|_|_|_|_|_|_|_|/ / |/| | | | | | | | | | | ||||||
* | | | | | | | | | | | Merge 0.9->0.10 | Matthew Wild | 2014-09-03 | 1 | -1/+5 | |
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|/ / |/| | | | | | | | | / | | |_|_|_|_|_|_|_|/ | |/| | | | | | | | | ||||||
| * | | | | | | | | | net.http.parser: Support status code 101 and allow handling of the received ↵ | Matthew Wild | 2014-09-03 | 1 | -1/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | data by someone else | |||||
* | | | | | | | | | | Merge 0.9->0.10 | Kim Alvefur | 2014-09-02 | 4 | -3/+21 | |
|\| | | | | | | | | | |_|_|_|_|_|_|_|/ |/| | | | | | | | | ||||||
| * | | | | | | | | net.server_select: 'listener'->'listeners' (fixes undefined global access) | Matthew Wild | 2014-09-02 | 1 | -1/+1 | |
| | | | | | | | | | ||||||
| * | | | | | | | | net.http, net.http.server, mod_c2s, mod_s2s, mod_component, ↵ | Matthew Wild | 2014-08-29 | 2 | -0/+8 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mod_admin_telnet, mod_net_multiplex: Add ondetach to release connection from 'sessions' table (or equivalent) | |||||
| * | | | | | | | | net.server_{select,event}: Add 'ondetach' callback for listener objects, to ↵ | Matthew Wild | 2014-08-29 | 2 | -2/+13 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | notify them when another listener is being assigned to a connection | |||||
* | | | | | | | | | Merge 0.9->0.10 | Matthew Wild | 2014-08-28 | 1 | -1/+1 | |
|\| | | | | | | | | |_|_|_|_|_|_|/ |/| | | | | | | | ||||||
| * | | | | | | | net.http.server: Comment out a log message | Kim Alvefur | 2014-08-27 | 1 | -1/+1 | |
| | | | | | | | | ||||||
* | | | | | | | | Merge 0.9->0.10 | Matthew Wild | 2014-07-25 | 2 | -0/+2 | |
|\| | | | | | | | |_|_|_|_|_|/ |/| | | | | | | ||||||
| * | | | | | | net.server_select/event: Switch sender mode to *a when reading, to make sure ↵ | Matthew Wild | 2014-07-25 | 2 | -0/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | we get all available data | |||||
* | | | | | | | Merge 0.9->0.10 | Matthew Wild | 2014-07-25 | 1 | -9/+6 | |
|\| | | | | | | |_|_|_|_|/ |/| | | | | | ||||||
| * | | | | | net.dns: Remove unused obsolete code | Matthew Wild | 2014-07-25 | 1 | -4/+1 | |
| | | | | | | ||||||
| * | | | | | net.dns: Ensure all pending requests get notified of a timeout when looking ↵ | Matthew Wild | 2014-07-25 | 1 | -5/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | up a record (fix for d122420542fb) | |||||
* | | | | | | Merge 0.9->0.10 | Kim Alvefur | 2014-06-30 | 2 | -1/+9 | |
|\| | | | | | |_|_|_|/ |/| | | | | ||||||
| * | | | | net.dns: Fix duplicated cache insertions by limiting outstanding queries per ↵ | Kim Alvefur | 2014-06-30 | 1 | -1/+8 | |
| | | | | | | | | | | | | | | | | | | | | name to one | |||||
| * | | | | net.adns: Add missing local declaration | Kim Alvefur | 2014-06-25 | 1 | -0/+1 | |
| | | | | | ||||||
* | | | | | net.http.server: Fix some typos introduced in 420c0d3b8583. | Daurnimator | 2014-04-15 | 1 | -4/+3 | |
| |_|_|/ |/| | | | ||||||
* | | | | net.http.server: Add prepare_header() and finish_response() to allow sending ↵ | Daurnimator | 2014-04-15 | 1 | -9/+17 | |
| |_|/ |/| | | | | | | | | chunked responses via the API | |||||
* | | | Merge 0.9->0.10 | Matthew Wild | 2014-04-02 | 7 | -119/+133 | |
|\ \ \ | |/ / |/| / | |/ | ||||||
| * | Merge 0.9->0.10 | Matthew Wild | 2013-12-16 | 2 | -6/+3 | |
| |\ | ||||||
| * | | server_select: fix onreadtimeout support so that listeners can override the ↵ | Matthew Wild | 2013-09-28 | 1 | -0/+4 | |
| | | | | | | | | | | | | default (disconnect) behaviour | |||||
| * | | net.server_select: Return handler from addclient | Kim Alvefur | 2013-09-06 | 1 | -2/+2 | |
| | | | ||||||
| * | | net.server_select: Pass on all arguments to addclient on to wrapclient | Kim Alvefur | 2013-09-06 | 1 | -1/+1 | |
| | | | ||||||
| * | | Remove all trailing whitespace | Florian Zeitz | 2013-08-09 | 7 | -57/+57 | |
| | | | ||||||
| * | | Merge 0.9->trunk | Kim Alvefur | 2013-07-22 | 2 | -1/+2 | |
| |\ \ | ||||||
| * \ \ | Merge 0.9->trunk | Kim Alvefur | 2013-07-10 | 2 | -3/+3 | |
| |\ \ \ | ||||||
| * \ \ \ | Merge 0.9->trunk | Matthew Wild | 2013-06-26 | 1 | -4/+13 | |
| |\ \ \ \ | ||||||
| * | | | | | net.dns: Support IPv6 addresses in resolv.conf | Florian Zeitz | 2013-06-18 | 1 | -6/+13 | |
| | | | | | | ||||||
| * | | | | | Merge 0.9->trunk | Kim Alvefur | 2013-06-09 | 1 | -1/+3 | |
| |\ \ \ \ \ | ||||||
| * \ \ \ \ \ | Merge 0.9->trunk | Matthew Wild | 2013-06-05 | 1 | -1/+1 | |
| |\ \ \ \ \ \ | ||||||
| * | | | | | | | net.server_select: Default checkinterval to 30s, so that read timeouts are ↵ | Matthew Wild | 2013-05-24 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | actually detected | |||||
| * | | | | | | | net.server_select: Support for listener.onreadtimeout() [see also e67891ad18d6] | Matthew Wild | 2013-05-24 | 1 | -4/+4 | |
| | | | | | | | | ||||||
| * | | | | | | | net.server_event: Add support for listener.onreadtimeout(conn), which can ↵ | Matthew Wild | 2013-05-24 | 1 | -49/+52 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | return true to prevent the connection from being closed when a read timeout occurs |