net.server_select: Don't call onconnect twice on SSL connections
authorKim Alvefur <zash@zash.se>
Wed, 17 Apr 2013 19:10:04 +0200
changeset 5482 f2631a14b953
parent 5481 169772e3d4e0
child 5483 ed10252ee9c3
child 5484 17ce73907c48
child 5490 ab821566ede8
net.server_select: Don't call onconnect twice on SSL connections
net/server_select.lua
--- a/net/server_select.lua	Wed Apr 17 14:32:26 2013 +0100
+++ b/net/server_select.lua	Wed Apr 17 19:10:04 2013 +0200
@@ -551,9 +551,6 @@
 						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