# HG changeset patch # User Matthew Wild # Date 1264952645 0 # Node ID cadfb455a00cfa63bc7ef6cde6a7908f97d0d808 # Parent 99700e601d16cc1f4edfbad2e30a84c0c7445b30 net.connlisteners: Update for new server API, type == 'tls' now means little - all connections support TLS diff -r 99700e601d16 -r cadfb455a00c net/connlisteners.lua --- a/net/connlisteners.lua Sun Jan 31 15:41:33 2010 +0000 +++ b/net/connlisteners.lua Sun Jan 31 15:44:05 2010 +0000 @@ -53,14 +53,6 @@ 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; @@ -68,7 +60,7 @@ local maxclients = 99999999; local autossl = udata and udata.type == "ssl"; - return server.addserver(interface, port, h, mode, ssl, autossl); + return server.addserver(interface, port, h, mode, autossl and ssl or nil); end return _M;