Mercurial > prosody-hg
diff prosody @ 2548:e12acef85166
prosody: Only set the ssl_ctx for 'ssl' connections
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Sun, 31 Jan 2010 16:22:52 +0000 |
| parents | 163b2aef5aff |
| children | 445b1de5652e |
line wrap: on
line diff
--- a/prosody Sun Jan 31 15:44:55 2010 +0000 +++ b/prosody Sun Jan 31 16:22:52 2010 +0000 @@ -206,7 +206,7 @@ log("error", "Non-numeric "..ports_option..": "..tostring(port)); else cl.start(listener, { - ssl = conntype ~= "tcp" and global_ssl_ctx, + ssl = conntype == "ssl" and global_ssl_ctx, port = port, interface = (option and config.get("*", "core", option.."_interface")) or cl.get(listener).default_interface
