| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | net.adns: Add helper module for performing non-blocking DNS lookups | Matthew Wild | 2009-03-04 | 1 | -0/+38 |
* | net.dns: Add methods necessary for allowing non-blocking DNS lookups | Matthew Wild | 2009-03-04 | 1 | -22/+72 |
* | net.server: Don't call shutdown method on socket if it doesn't have one, eg. ... | Matthew Wild | 2009-03-04 | 1 | -1/+1 |
* | net.server: Check for potential nil handler on close | Matthew Wild | 2009-03-03 | 1 | -0/+1 |
* | net.server: Fix to make sure we send a string to logging function | Matthew Wild | 2009-03-02 | 1 | -1/+1 |
* | net.server: Don't retry if client closes socket during SSL handshaking | Matthew Wild | 2009-03-01 | 1 | -2/+4 |
* | net.server: Some fixes for SSL/TLS handshake handling | Matthew Wild | 2009-02-27 | 1 | -4/+11 |
* | net/xmppclient_listener: Add some logging and handle unestablished sessions e... | Matthew Wild | 2009-02-26 | 1 | -2/+3 |
* | net.server: Fix some more potential nil handler accesses | Matthew Wild | 2009-02-18 | 1 | -2/+4 |
* | net.server: Fix nil table index assignment | Matthew Wild | 2009-02-09 | 1 | -1/+1 |
* | net.server: Fix potential fatal error in server.lua | Matthew Wild | 2009-02-09 | 1 | -1/+1 |
* | Fix for nil handler error after close | Matthew Wild | 2009-02-04 | 1 | -1/+1 |
* | Update copyright notices for 2009 | Matthew Wild | 2009-01-30 | 3 | -6/+6 |
* | 0.2->0.3 | Matthew Wild | 2009-01-30 | 4 | -4/+4 |
* | GPL->MIT! | Matthew Wild | 2009-01-30 | 3 | -39/+6 |
* | server.lua: Comment out unnecessary or very verbose logging, and log the rest... | Matthew Wild | 2009-01-17 | 1 | -9/+9 |
* | server.lua: Use Prosody logger for errors, silence non-errors | Matthew Wild | 2009-01-17 | 1 | -2/+4 |
* | Port to new server.lua, quite some changes, but I believe everything to be wo... | Matthew Wild | 2009-01-17 | 3 | -893/+831 |
* | net.http: custom_headers -> headers | Matthew Wild | 2009-01-16 | 1 | -1/+1 |
* | net.http: Remove request from conn->request table when conn closed | Matthew Wild | 2009-01-16 | 1 | -1/+1 |
* | Fixed server.lua to use prosody logger for errors | Matthew Wild | 2009-01-16 | 1 | -2/+4 |
* | net.connlisteners: Fix to report errors loading connlisteners | Matthew Wild | 2009-01-15 | 1 | -2/+2 |
* | net.http: Don't log content from server | Matthew Wild | 2009-01-15 | 1 | -1/+1 |
* | net.http: Fix to send query part of URL to server | Matthew Wild | 2009-01-15 | 1 | -1/+8 |
* | net.http: Fix for callbacks being triggered multiple times for the same request | Matthew Wild | 2009-01-14 | 1 | -1/+3 |
* | core.httpserver: Rename request.responseheaders to the more logical request.h... | Matthew Wild | 2009-01-12 | 1 | -3/+3 |
* | Protected call for HTTP request callbacks, to catch errors | Matthew Wild | 2009-01-08 | 1 | -3/+7 |
* | Fix to prevent calling HTTP request callback twice with the same data | Matthew Wild | 2009-01-08 | 1 | -2/+7 |
* | Small fix for logging in connlisteners (warning != warn)vault/0.2.00.2.0 | Matthew Wild | 2008-12-27 | 1 | -1/+1 |
* | Remove some debugging code that slipped in | Matthew Wild | 2008-12-27 | 1 | -1/+0 |
* | Fix specifying ports in config, and SSL support | Matthew Wild | 2008-12-27 | 2 | -9/+19 |
* | Remove logging for server.lua | Matthew Wild | 2008-12-27 | 1 | -1/+0 |
* | HTTP requests now have status code as a number instead of a string. Switched ... | Matthew Wild | 2008-12-25 | 1 | -7/+8 |
* | Adding initial net.httpserver (lots of work to do on it) | Matthew Wild | 2008-12-22 | 2 | -0/+283 |
* | Fix nil status code for http request callbacks | Matthew Wild | 2008-12-22 | 1 | -1/+1 |
* | Fix data loss when closing connection with a large write queue. Thanks albert :) | Matthew Wild | 2008-12-18 | 1 | -6/+48 |
* | Second merge from waqas | Matthew Wild | 2008-12-16 | 1 | -1/+1 |
|\ |
|
| * | Fixed URL encoding to generate %0x instead of %x | Waqas Hussain | 2008-12-16 | 1 | -1/+1 |
* | | Change xmlhandlers to match stream opening tag with ns+tag | Matthew Wild | 2008-12-16 | 2 | -2/+2 |
* | | Protect loading of connlisteners, to catch errors | Matthew Wild | 2008-12-16 | 1 | -1/+2 |
|/ |
|
* | Make wraptcpclient set timeout to 0, and add it to the list of exported funct... | Matthew Wild | 2008-12-13 | 1 | -0/+3 |
* | Oops, don't call server.loop() because we'll be running inside the server | Matthew Wild | 2008-12-12 | 1 | -2/+1 |
* | Pass HTTP request object to callback | Matthew Wild | 2008-12-12 | 1 | -5/+5 |
* | HTTP request callbacks now: handler(code, content) (where code may be 0, and ... | Matthew Wild | 2008-12-12 | 1 | -5/+5 |
* | Non-blocking HTTP requests (adding net.http) | Matthew Wild | 2008-12-12 | 2 | -0/+209 |
* | 0.1 -> 0.2 | Matthew Wild | 2008-12-10 | 4 | -24/+6 |
* | Fix blank tracebacks for c2s/s2s connections | Matthew Wild | 2008-12-10 | 2 | -2/+2 |
* | stanza_dispatch != dispatch_stanza | Matthew Wild | 2008-12-07 | 2 | -2/+2 |
* | Typo in variable name in last commit | Matthew Wild | 2008-12-07 | 2 | -2/+2 |
* | stanza_dispatch = core_process_stanza, fixed for xmpp{client,server} listener... | Matthew Wild | 2008-12-07 | 2 | -7/+2 |