net.server: Add checking for nil sockets to prevent traceback

Tue, 18 Aug 2009 15:58:44 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Tue, 18 Aug 2009 15:58:44 +0100
changeset 1785
17c0fb598c97
parent 1770
3e17002221eb
child 1786
4016d8bc30b8

net.server: Add checking for nil sockets to prevent traceback

net/server.lua file | annotate | diff | comparison | revisions
--- a/net/server.lua	Fri Sep 11 03:12:09 2009 +0100
+++ b/net/server.lua	Tue Aug 18 15:58:44 2009 +0100
@@ -483,13 +483,19 @@
         end
     end
     local _sendbuffer = function( )    -- this function sends data
-        local buffer = table_concat( bufferqueue, "", 1, bufferqueuelen )
-        local succ, err, byte = send( socket, buffer, 1, bufferlen )
-        local count = ( succ or byte or 0 ) * STAT_UNIT
-        sendtraffic = sendtraffic + count
-        _sendtraffic = _sendtraffic + count
-        _ = _cleanqueue and clean( bufferqueue )
-        --out_put( "server.lua: sended '", buffer, "', bytes: ", tostring(succ), ", error: ", tostring(err), ", part: ", tostring(byte), ", to: ", tostring(ip), ":", tostring(clientport) )
+    	local succ, err, byte, buffer, count;
+    	local count;
+    	if socket then
+            buffer = table_concat( bufferqueue, "", 1, bufferqueuelen )
+            succ, err, byte = send( socket, buffer, 1, bufferlen )
+            count = ( succ or byte or 0 ) * STAT_UNIT
+            sendtraffic = sendtraffic + count
+            _sendtraffic = _sendtraffic + count
+            _ = _cleanqueue and clean( bufferqueue )
+            --out_put( "server.lua: sended '", buffer, "', bytes: ", tostring(succ), ", error: ", tostring(err), ", part: ", tostring(byte), ", to: ", tostring(ip), ":", tostring(clientport) )
+        else
+            succ, err, count = false, "closed", 0;
+        end
         if succ then    -- sending succesful
             bufferqueuelen = 0
             bufferlen = 0

mercurial