Small fix for connlisteners to accept nil for userdata

Sun, 23 Nov 2008 04:53:12 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Sun, 23 Nov 2008 04:53:12 +0000
changeset 380
2b22b8eee939
parent 379
c5617678cd7b
child 381
e967f162501e

Small fix for connlisteners to accept nil for userdata

net/connlisteners.lua file | annotate | diff | comparison | revisions
--- a/net/connlisteners.lua	Sun Nov 23 03:00:20 2008 +0000
+++ b/net/connlisteners.lua	Sun Nov 23 04:53:12 2008 +0000
@@ -38,8 +38,8 @@
 		error("No such connection module: "..name, 0);
 	end
 	return server_add(h, 
-			udata.port or h.default_port or error("Can't start listener "..name.." because no port was specified, and it has no default port", 0), 
-				udata.interface or "*", udata.mode or h.default_mode or 1, udata.ssl );
+			(udata and udata.port) or h.default_port or error("Can't start listener "..name.." because no port was specified, and it has no default port", 0), 
+				(udata and udata.interface) or "*", (udata and udata.mode) or h.default_mode or 1, (udata and udata.ssl) or nil );
 end
 
 return _M;
\ No newline at end of file

mercurial