aboutsummaryrefslogtreecommitdiffstats
path: root/net/server_select.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-09-26 17:36:53 +0200
committerKim Alvefur <zash@zash.se>2018-09-26 17:36:53 +0200
commit7a86af343f4755531e9c04adefa808c36462ae43 (patch)
tree81c62534a9d870f4462bbb306f51dea28c0509a3 /net/server_select.lua
parent7f9c753df9f016cc67bb2ee67a9a4f5652d0ec0b (diff)
downloadprosody-7a86af343f4755531e9c04adefa808c36462ae43.tar.gz
prosody-7a86af343f4755531e9c04adefa808c36462ae43.zip
net.connect: Fix passing request table to new listener
This could be a return value from ondetach
Diffstat (limited to 'net/server_select.lua')
-rw-r--r--net/server_select.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/server_select.lua b/net/server_select.lua
index 1b535bb7..cd97f0a6 100644
--- a/net/server_select.lua
+++ b/net/server_select.lua
@@ -321,7 +321,7 @@ wrapconnection = function( server, listeners, socket, ip, serverport, clientport
end
handler.onreadtimeout = onreadtimeout;
- handler.setlistener = function( self, listeners )
+ handler.setlistener = function( self, listeners, data )
if detach then
detach(self) -- Notify listener that it is no longer responsible for this connection
end
@@ -332,7 +332,7 @@ wrapconnection = function( server, listeners, socket, ip, serverport, clientport
handler.onreadtimeout = listeners.onreadtimeout
detach = listeners.ondetach
if listeners.onattach then
- listeners.onattach(self)
+ listeners.onattach(self, data)
end
end
handler.getstats = function( )