aboutsummaryrefslogtreecommitdiffstats
path: root/net/http.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-09-02 22:34:32 +0200
committerKim Alvefur <zash@zash.se>2014-09-02 22:34:32 +0200
commitd21a5e46225b9b62b78cd7eeee1ed6869ef9efa0 (patch)
tree5ae5bb832b9e41b4812e12421bb70daf1c3b7446 /net/http.lua
parent6594e3042b1afd3ecf39c841c6e631fa57f1ad18 (diff)
parentab57f00b936342c599aadf901f85e5b29ee91baa (diff)
downloadprosody-d21a5e46225b9b62b78cd7eeee1ed6869ef9efa0.tar.gz
prosody-d21a5e46225b9b62b78cd7eeee1ed6869ef9efa0.zip
Merge 0.10->trunk
Diffstat (limited to 'net/http.lua')
-rw-r--r--net/http.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/net/http.lua b/net/http.lua
index b87c9396..35e02fdf 100644
--- a/net/http.lua
+++ b/net/http.lua
@@ -71,6 +71,10 @@ function listener.ondisconnect(conn, err)
requests[conn] = nil;
end
+function listener.ondetach(conn)
+ requests[conn] = nil;
+end
+
local function request_reader(request, data, err)
if not request.parser then
local function error_cb(reason)