aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-11-23 04:53:12 +0000
committerMatthew Wild <mwild1@gmail.com>2008-11-23 04:53:12 +0000
commit3ccec05207a651a460bb26376dee5c1cc5739d41 (patch)
treeecbc1809db9f9ef7ab0658da6bbddbfb6706f078 /net
parent950bc57ed03552587ff0f0a388ece6e57caec0a6 (diff)
downloadprosody-3ccec05207a651a460bb26376dee5c1cc5739d41.tar.gz
prosody-3ccec05207a651a460bb26376dee5c1cc5739d41.zip
Small fix for connlisteners to accept nil for userdata
Diffstat (limited to 'net')
-rw-r--r--net/connlisteners.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/connlisteners.lua b/net/connlisteners.lua
index 431d8717..2b95331c 100644
--- a/net/connlisteners.lua
+++ b/net/connlisteners.lua
@@ -38,8 +38,8 @@ function start(name, udata)
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