mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
core.s2smanager: Fix check_cert_status() for when the stream has no from attr
This commit is contained in:
parent
56edb2db8c
commit
f9853f402b
1 changed files with 6 additions and 1 deletions
|
@ -410,7 +410,12 @@ local function check_cert_status(session)
|
||||||
(session.log or log)("debug", "certificate chain validation result: valid");
|
(session.log or log)("debug", "certificate chain validation result: valid");
|
||||||
session.cert_chain_status = "valid";
|
session.cert_chain_status = "valid";
|
||||||
|
|
||||||
local host = session.direction == "incoming" and session.from_host or session.to_host
|
local host;
|
||||||
|
if session.direction == "incoming" then
|
||||||
|
host = session.from_host;
|
||||||
|
else
|
||||||
|
host = session.to_host;
|
||||||
|
end
|
||||||
|
|
||||||
-- We'll go ahead and verify the asserted identity if the
|
-- We'll go ahead and verify the asserted identity if the
|
||||||
-- connecting server specified one.
|
-- connecting server specified one.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue