diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-04-18 00:39:59 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-04-18 00:39:59 +0100 |
commit | 9544158f980bf2a08b0e5f438bd0eff22f53996a (patch) | |
tree | 18c13a678eb53d5b8a1ea2486f5e6cf9f4383dee /net | |
parent | 8f1b950b8da2d5632d463b7210cc2c2dc9586f03 (diff) | |
download | prosody-9544158f980bf2a08b0e5f438bd0eff22f53996a.tar.gz prosody-9544158f980bf2a08b0e5f438bd0eff22f53996a.zip |
Backed out changeset f2631a14b953
Diffstat (limited to 'net')
-rw-r--r-- | net/server_select.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/server_select.lua b/net/server_select.lua index f123f4b7..8ce9eed2 100644 --- a/net/server_select.lua +++ b/net/server_select.lua @@ -551,6 +551,9 @@ wrapconnection = function( server, listeners, socket, ip, serverport, clientport handler.readbuffer = _readbuffer -- when handshake is done, replace the handshake function with regular functions handler.sendbuffer = _sendbuffer _ = status and status( handler, "ssl-handshake-complete" ) + if self.autostart_ssl and listeners.onconnect then + listeners.onconnect(self); + end _readlistlen = addsocket(_readlist, client, _readlistlen) return true else |