aboutsummaryrefslogtreecommitdiffstats
path: root/net/server_event.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-01-21 12:56:08 +0000
committerMatthew Wild <mwild1@gmail.com>2010-01-21 12:56:08 +0000
commit4ec0f47224c55725182e2fefa1749fba77e6fc0a (patch)
treec014045a4e8eee1684aa25b599b2d368a78350d1 /net/server_event.lua
parentd532b1173a36940f73046798371b8077af98d0b7 (diff)
downloadprosody-4ec0f47224c55725182e2fefa1749fba77e6fc0a.tar.gz
prosody-4ec0f47224c55725182e2fefa1749fba77e6fc0a.zip
net.server_{select,event}: Fail gracefully if socket doesn't have a setoption method (LuaSec issue I think)
Diffstat (limited to 'net/server_event.lua')
-rw-r--r--net/server_event.lua5
1 files changed, 4 insertions, 1 deletions
diff --git a/net/server_event.lua b/net/server_event.lua
index a1403911..c01c85a6 100644
--- a/net/server_event.lua
+++ b/net/server_event.lua
@@ -420,7 +420,10 @@ do
end
function interface_mt:setoption(option, value)
- return self.conn:setoption(option, value);
+ if self.conn.setoption then
+ return self.conn:setoption(option, value);
+ end
+ return false, "setoption not implemented";
end
-- Stub handlers