Diff

net/server.lua @ 994:8fd4efc3ed96

net.server: Remove some debug code which slipped through
author Matthew Wild <mwild1@gmail.com>
date Sun, 12 Apr 2009 03:06:22 +0100
parent 989:ec239c044f31
child 996:6fb96dffb2c1
line wrap: on
line diff
--- a/net/server.lua	Sun Apr 12 03:02:51 2009 +0100
+++ b/net/server.lua	Sun Apr 12 03:06:22 2009 +0100
@@ -733,7 +733,6 @@
 
 loop = function( )    -- this is the main loop of the program
     while dontstop do
-        out_put(tostring(dontstop))
         local read, write, err = socket_select( _readlist, _sendlist, _selecttimeout )
         for i, socket in ipairs( write ) do    -- send data waiting in writequeues
             local handler = _socketlist[ socket ]