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:
Kim Alvefur 2021-07-14 22:04:23 +02:00
parent 6ca7b680e0
commit a60da1f81d

View file

@ -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