view mod_s2soutinjection/mod_s2soutinjection.lua @ 6497:3b0cfef7fabe

mod_report_affiliations: Don't report 0 trust when we just didn't calculate it Absent 'trust' means "I don't have it" or "I don't want to expose it" trust='0' means "I don't trust this account at all"
author Matthew Wild <mwild1@gmail.com>
date Wed, 25 Mar 2026 10:23:52 +0000
parents 4cc3d3de74a7
children
line wrap: on
line source

--% requires: s2sout-pre-connect-event

local basic_resolver = require "net.resolvers.basic";

local injected = module:get_option("s2s_connect_overrides");

module:hook("s2sout-pre-connect", function (event)
	local session = event.session;
	local to_host = session.to_host;
	local inject = injected and injected[to_host];
	if not inject then return end

	local host, port = inject[1] or inject, tonumber(inject[2]) or 5269;
	event.resolver = basic_resolver.new(host, port, "tcp");
end);