mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Log failures to set socket options
Good to know if it fails, especially since the return value doesn't seem to be checked anywhere. Since LuaSec-wrapped sockets don't expose the setoption method, this will likely show when mod_c2s tries to enable keepalives on direct tls connections.
This commit is contained in:
parent
6ca7b680e0
commit
a60da1f81d
1 changed files with 8 additions and 2 deletions
|
@ -281,9 +281,15 @@ end
|
|||
|
||||
function interface:setoption(k, v)
|
||||
-- LuaSec doesn't expose setoption :(
|
||||
if self.conn.setoption then
|
||||
self.conn:setoption(k, v);
|
||||
local ok, ret, err = pcall(self.conn.setoption, self.conn, k, v);
|
||||
if not ok then
|
||||
self:noise("Setting option %q = %q failed: %s", k, v, ret);
|
||||
return ok, ret;
|
||||
elseif not ret then
|
||||
self:noise("Setting option %q = %q failed: %s", k, v, err);
|
||||
return ret, err;
|
||||
end
|
||||
return ret;
|
||||
end
|
||||
|
||||
-- Timeout for detecting dead or idle sockets
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue