X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=net%2Fconnlisteners.lua;h=ee54f0494e9a9b4ef92149f737172f19256daf30;hb=3704ffb23b6ffd8d248f9c7ad26d7f19a0cc6824;hp=a9b92a8c81a47a2ce1957a8fbe7267f00aee55d9;hpb=b8e41747b3923e960ab09a4b6b3df946ec36464f;p=prosody.git diff --git a/net/connlisteners.lua b/net/connlisteners.lua index a9b92a8c..ee54f049 100644 --- a/net/connlisteners.lua +++ b/net/connlisteners.lua @@ -53,22 +53,17 @@ function start(name, udata) error("No such connection module: "..name.. (err and (" ("..err..")") or ""), 0); end - if udata then - if (udata.type == "ssl" or udata.type == "tls") and not udata.ssl then - error("No SSL context supplied for a "..tostring(udata.type):upper().." connection!", 0); - elseif udata.ssl and udata.type == "tcp" then - error("SSL context supplied for a TCP connection!", 0); - end - end - local interface = (udata and udata.interface) or h.default_interface or "*"; local port = (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); local mode = (udata and udata.mode) or h.default_mode or 1; local ssl = (udata and udata.ssl) or nil; - local maxclients = 99999999; local autossl = udata and udata.type == "ssl"; - return server.addserver(interface, port, h, mode, ssl, autossl); + if autossl and not ssl then + return nil, "no ssl context"; + end + + return server.addserver(interface, port, h, mode, autossl and ssl or nil); end return _M;