mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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
|
end
|
||||||
local client = wrapsocket(conn, self, nil, self.listeners);
|
local client = wrapsocket(conn, self, nil, self.listeners);
|
||||||
client:debug("New connection %s on server %s", client, self);
|
client:debug("New connection %s on server %s", client, self);
|
||||||
|
client:defaultoptions();
|
||||||
if self.tls_direct then
|
if self.tls_direct then
|
||||||
client:add(true, true);
|
client:add(true, true);
|
||||||
client:inittls(self.tls_ctx, true);
|
client:inittls(self.tls_ctx, true);
|
||||||
|
@ -722,9 +723,14 @@ end
|
||||||
-- Initialization for outgoing connections
|
-- Initialization for outgoing connections
|
||||||
function interface:init()
|
function interface:init()
|
||||||
self:setwritetimeout(cfg.connect_timeout);
|
self:setwritetimeout(cfg.connect_timeout);
|
||||||
|
self:defaultoptions();
|
||||||
return self:add(true, true);
|
return self:add(true, true);
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- luacheck: ignore 212/self
|
||||||
|
function interface:defaultoptions()
|
||||||
|
end
|
||||||
|
|
||||||
function interface:pause()
|
function interface:pause()
|
||||||
self:noise("Pause reading");
|
self:noise("Pause reading");
|
||||||
return self:set(false);
|
return self:set(false);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue