diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-04-18 00:41:03 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-04-18 00:41:03 +0100 |
commit | bf384159d8186aa9155ffb7be957c3fc4087fa05 (patch) | |
tree | 9226052d6bded5c98b4afd9496428507f507aad7 /net | |
parent | 0345565022f1526837d749a4768e43b5d532c77c (diff) | |
download | prosody-bf384159d8186aa9155ffb7be957c3fc4087fa05.tar.gz prosody-bf384159d8186aa9155ffb7be957c3fc4087fa05.zip |
net.server_select: Don't call onconnect twice for SSL connections
Diffstat (limited to 'net')
-rw-r--r-- | net/server_select.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/server_select.lua b/net/server_select.lua index ca80534c..28f1dc6d 100644 --- a/net/server_select.lua +++ b/net/server_select.lua @@ -243,7 +243,7 @@ wrapserver = function( listeners, socket, ip, serverport, pattern, sslctx ) -- t end connections = connections + 1 out_put( "server.lua: accepted new client connection from ", tostring(ip), ":", tostring(clientport), " to ", tostring(serverport)) - if dispatch then + if dispatch and not sslctx then -- SSL connections will notify onconnect when handshake completes return dispatch( handler ); end return; |