net/connlisteners.lua

changeset 403
da92afa267cf
parent 380
2b22b8eee939
child 467
66f145f5c932
--- a/net/connlisteners.lua	Sun Nov 23 20:43:42 2008 +0100
+++ b/net/connlisteners.lua	Sun Nov 23 20:44:48 2008 +0100
@@ -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