mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Small fix for connlisteners to accept nil for userdata
This commit is contained in:
parent
950bc57ed0
commit
3ccec05207
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
Loading…
Add table
Add a link
Reference in a new issue