mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.connect: Allow passing TLS context from resolver
Only allowing it to be passed directly makes it hard to combine plain (i.e. starttls) and Direct TLS connections in the same connection resolution procedure. But now we can, using chained resolvers!
This commit is contained in:
parent
f31762a075
commit
9f1af0be2e
1 changed files with 2 additions and 1 deletions
|
@ -42,7 +42,8 @@ local function attempt_connection(p)
|
|||
return;
|
||||
end
|
||||
p:log("debug", "Next target to try is %s:%d", ip, port);
|
||||
local conn, err = server.addclient(ip, port, pending_connection_listeners, p.options.pattern or "*a", p.options.sslctx, conn_type, extra);
|
||||
local conn, err = server.addclient(ip, port, pending_connection_listeners, p.options.pattern or "*a",
|
||||
extra and extra.sslctx or p.options.sslctx, conn_type, extra);
|
||||
if not conn then
|
||||
log("debug", "Connection attempt failed immediately: %s", err);
|
||||
p.last_error = err or "unknown reason";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue