net/server_select.lua: Reduce select() timeout back to 1s
|
Matthew Wild |
2010-12-18 |
net.server_select: Set select() timeout to 3600 by default.
|
Waqas Hussain |
2010-12-02 |
net.server_select: Made another global local.
|
Waqas Hussain |
2010-12-02 |
net.server_select: Made some globals local.
|
Waqas Hussain |
2010-12-02 |
net.server_select: Make changes required for sub-second timer precision.
|
Waqas Hussain |
2010-12-02 |
net.server_select: Restore real sendbuffer() before calling onconnect handler, in case onconnect sends data and the socket is still writeable (causing stack overflow into sendbuffer()/onconnect())
|
Matthew Wild |
2010-10-22 |
net.server_select: Add server.step() to run through a single iteration of the event loop
|
Matthew Wild |
2010-09-09 |
net.server_select, net.server_event: Remove set_mode() call from server.link()... it can cause the last chunk of data to be discarded if shorter than buffersize (thanks to Zash for the debugging)
|
Matthew Wild |
2010-08-22 |
net.server_select: Remove 'now' parameter from starttls(), and base it on whether the sendbuffer is empty instead
|
Matthew Wild |
2010-07-22 |
net.server_select: Ensure that onconnect is called for server sockets as well as clients, rather than onincoming. Fixes mod_console traceback, issue #197
|
Matthew Wild |
2010-07-16 |
Merge 0.7->trunk
|
Matthew Wild |
2010-07-02 |
net.server_select: Clean up buffer and fire drained callback on successful write before we try and start TLS negotiation (if negotiation fails instantly then we can be left without a handler to use for cleanup) (thanks dersd)
|
Matthew Wild |
2010-07-02 |
net.server_select: Fix a snippet of code that was living at the wrong indentation level
|
Matthew Wild |
2010-07-02 |
net.server_select: Remove some debugging code.
|
Waqas Hussain |
2010-05-06 |
Merge 0.7->trunk
|
Matthew Wild |
2010-05-05 |
net.server_select: Fix typo affecting connections with an onconnect listener that have data pending in the sendbuffer
|
Matthew Wild |
2010-05-05 |
Merge 0.7->trunk
|
Matthew Wild |
2010-05-05 |
net.server_select, net.server_event: Add server.link() to link 2 connections with an intermediate buffer of the specified size
|
Matthew Wild |
2010-05-05 |
net.server_select, net.server_event: Support for ondrain listener callback for when send buffer is empty
|
Matthew Wild |
2010-05-05 |
net.server_select, net.server_event: Rename :pattern() method to :set_mode() for select backend, and add :set_mode() to event backend
|
Matthew Wild |
2010-05-05 |
net.server_select, net.server_event: Support for :pause() and :resume() on connections
|
Matthew Wild |
2010-05-05 |
Merge Tobias's fancy SASL branch->trunk
|
Matthew Wild |
2010-05-05 |
Merge with tip.
|
Tobias Markmann |
2010-03-12 |
util.sasl: 2009 -> 2010 in copyright header.
|
Tobias Markmann |
2010-03-12 |
net.server_select: Support for listener.onconnect
|
Matthew Wild |
2010-04-11 |
Merge 0.6->0.7
base
net/server.lua@9aac5922d2ce
|
Matthew Wild |
2010-04-09 |
Merge 0.6->0.7
base
net/server.lua@fc8a03e520c7
|
Matthew Wild |
2010-03-22 |
net.server_select: Fix for traceback when a read returns an error and no data (thanks dersd)
|
Matthew Wild |
2010-03-05 |
net.server_select: Fix typo
|
Matthew Wild |
2010-03-01 |
net.server_select: Fix calling method of some handler.close()s
|
Matthew Wild |
2010-03-01 |
net.server_select: Small indentation fix
|
Matthew Wild |
2010-02-11 |
net.server_select: Fix traceback with no LuaSec available (thanks Nolan)
|
Matthew Wild |
2010-02-11 |
net.server_select: Only allow starttls if luasec is available (thanks Nolan)
|
Matthew Wild |
2010-02-10 |
net.server_select: *Major* whitespace refactoring to meet Prosody's coding style guidelines, we now have tabs
|
Matthew Wild |
2010-02-10 |
net.server_select: listener.status -> listener.onstatus for consistency
|
Matthew Wild |
2010-01-31 |
net.server_select: Report whether a new listener uses SSL or not in the log message
|
Matthew Wild |
2010-01-31 |
net.server_select: Remove startssl parameter to the client/server creation functions - passing a sslctx now indicates you want to use SSL from the start
|
Matthew Wild |
2010-01-31 |
net.server_{select,event}: Fail gracefully if socket doesn't have a setoption method (LuaSec issue I think)
|
Matthew Wild |
2010-01-21 |
net.server_select: Add conn:setoption() to set options on the socket
|
Matthew Wild |
2010-01-12 |
net.server_select: Fix oops in last commit
|
Matthew Wild |
2010-01-06 |
net.server_select: Allow setting the logger using server.setlogger
|
Matthew Wild |
2010-01-06 |
net.server_select: Add get_backend() method
|
Matthew Wild |
2009-12-08 |
net.server_select, net.server_event: Convert to unix line endings from Windows
|
Matthew Wild |
2009-12-04 |
net.server_select: Restore checks for wantread/timeout errors on receive
|
Matthew Wild |
2009-12-03 |
net.server_select: Add a function to just lock a stream for reading
|
Sjoerd Simons |
2009-12-03 |
net.server_select: Make bufferlen() method return, of all things, the buffer length
|
Matthew Wild |
2009-12-03 |
net.server_select: Fix possibility of losing data sent from a socket just before it closes (thanks Sjoerd Simons)
|
Matthew Wild |
2009-12-03 |
net.server_select: Update conn.close() to use new connection method convention
|
Matthew Wild |
2009-11-28 |
net.server_select: Rename server.setsend() to server.set_send() for consistency
|
Matthew Wild |
2009-11-26 |
net.server_select: Bring up to date to new common connection API
|
Matthew Wild |
2009-11-22 |
net.server_select: Change addserver() parameters to be compatible with new standard syntax
|
Matthew Wild |
2009-11-21 |
net.server: Rename to net.server_select
base
net/server.lua@5451ab3dc03c
|
Matthew Wild |
2009-11-21 |