net.server_epoll: Add an (empty) method for setting socket options

This commit is contained in:
Kim Alvefur 2021-07-14 22:06:24 +02:00
parent a60da1f81d
commit 9b58be76c4

View file

@ -709,6 +709,7 @@ function interface:onacceptable()
end
local client = wrapsocket(conn, self, nil, self.listeners);
client:debug("New connection %s on server %s", client, self);
client:defaultoptions();
if self.tls_direct then
client:add(true, true);
client:inittls(self.tls_ctx, true);
@ -722,9 +723,14 @@ end
-- Initialization for outgoing connections
function interface:init()
self:setwritetimeout(cfg.connect_timeout);
self:defaultoptions();
return self:add(true, true);
end
-- luacheck: ignore 212/self
function interface:defaultoptions()
end
function interface:pause()
self:noise("Pause reading");
return self:set(false);