mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
mod_dialback: Use correct host for certificate check (fixes #1381)
This commit is contained in:
parent
0a3d796623
commit
1cd5049c77
1 changed files with 1 additions and 2 deletions
|
@ -25,8 +25,7 @@ local dialback_secret = sha256_hash(module:get_option_string("dialback_secret",
|
|||
local dwd = module:get_option_boolean("dialback_without_dialback", false);
|
||||
|
||||
--- Helper to check that a session peer's certificate is valid
|
||||
function check_cert_status(session)
|
||||
local host = session.direction == "outgoing" and session.to_host or session.from_host
|
||||
function check_cert_status(session, host)
|
||||
local conn = session.conn:socket()
|
||||
local cert
|
||||
if conn.getpeercertificate then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue