mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
net.server_epoll: Prevent traceback when checking TLS after connection gone
Unclear why this would be done, but an error is not great.
This commit is contained in:
parent
69dc40ac35
commit
5764e73a65
1 changed files with 5 additions and 0 deletions
|
@ -630,30 +630,35 @@ end
|
||||||
|
|
||||||
function interface:ssl_info()
|
function interface:ssl_info()
|
||||||
local sock = self.conn;
|
local sock = self.conn;
|
||||||
|
if not sock then return nil, "not-connected" end
|
||||||
if not sock.info then return nil, "not-implemented"; end
|
if not sock.info then return nil, "not-implemented"; end
|
||||||
return sock:info();
|
return sock:info();
|
||||||
end
|
end
|
||||||
|
|
||||||
function interface:ssl_peercertificate()
|
function interface:ssl_peercertificate()
|
||||||
local sock = self.conn;
|
local sock = self.conn;
|
||||||
|
if not sock then return nil, "not-connected" end
|
||||||
if not sock.getpeercertificate then return nil, "not-implemented"; end
|
if not sock.getpeercertificate then return nil, "not-implemented"; end
|
||||||
return sock:getpeercertificate();
|
return sock:getpeercertificate();
|
||||||
end
|
end
|
||||||
|
|
||||||
function interface:ssl_peerverification()
|
function interface:ssl_peerverification()
|
||||||
local sock = self.conn;
|
local sock = self.conn;
|
||||||
|
if not sock then return nil, "not-connected" end
|
||||||
if not sock.getpeerverification then return nil, { { "Chain verification not supported" } }; end
|
if not sock.getpeerverification then return nil, { { "Chain verification not supported" } }; end
|
||||||
return sock:getpeerverification();
|
return sock:getpeerverification();
|
||||||
end
|
end
|
||||||
|
|
||||||
function interface:ssl_peerfinished()
|
function interface:ssl_peerfinished()
|
||||||
local sock = self.conn;
|
local sock = self.conn;
|
||||||
|
if not sock then return nil, "not-connected" end
|
||||||
if not sock.getpeerfinished then return nil, "not-implemented"; end
|
if not sock.getpeerfinished then return nil, "not-implemented"; end
|
||||||
return sock:getpeerfinished();
|
return sock:getpeerfinished();
|
||||||
end
|
end
|
||||||
|
|
||||||
function interface:ssl_exportkeyingmaterial(label, len, context)
|
function interface:ssl_exportkeyingmaterial(label, len, context)
|
||||||
local sock = self.conn;
|
local sock = self.conn;
|
||||||
|
if not sock then return nil, "not-connected" end
|
||||||
if sock.exportkeyingmaterial then
|
if sock.exportkeyingmaterial then
|
||||||
return sock:exportkeyingmaterial(label, len, context);
|
return sock:exportkeyingmaterial(label, len, context);
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue