aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2015-09-21 23:19:48 +0200
committerKim Alvefur <zash@zash.se>2015-09-21 23:19:48 +0200
commitfed3f5a0da97ae8f65fa9c04e7447e2b1b68601d (patch)
treed858b5215395c3cf36135daf61a71a99afb64098 /core
parent6f1da3f144819018421827c0eb72a2358cfb549e (diff)
downloadprosody-fed3f5a0da97ae8f65fa9c04e7447e2b1b68601d.tar.gz
prosody-fed3f5a0da97ae8f65fa9c04e7447e2b1b68601d.zip
sessionmanager: Make session.send() return true unless there really is an error [backported from 0.10]
Diffstat (limited to 'core')
-rw-r--r--core/sessionmanager.lua8
1 files changed, 7 insertions, 1 deletions
diff --git a/core/sessionmanager.lua b/core/sessionmanager.lua
index 4b014d18..67ceb739 100644
--- a/core/sessionmanager.lua
+++ b/core/sessionmanager.lua
@@ -37,9 +37,15 @@ function new_session(conn)
if t then
t = filter("bytes/out", tostring(t));
if t then
- return w(conn, t);
+ local ret, err = w(conn, t);
+ if not ret then
+ session.log("debug", "Write-error: %s", tostring(err));
+ return false;
+ end
+ return true;
end
end
+ return true;
end
session.ip = conn:ip();
local conn_name = "c2s"..tostring(session):match("[a-f0-9]+$");