mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Add an (empty) method for setting socket options
This commit is contained in:
parent
a60da1f81d
commit
9b58be76c4
1 changed files with 6 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue