Software /
code /
prosody
Diff
plugins/s2s/mod_s2s.lua @ 4570:9612abc89dd1
mod_s2s, s2sout.lib: import cert verify and add another fallback method in case socket.local_addresses isn't there.
author | Marco Cirillo <maranda@lightwitch.org> |
---|---|
date | Fri, 24 Feb 2012 15:34:25 +0000 |
parent | 4568:aae7a62671de |
child | 4572:aba47e6dff43 |
line wrap: on
line diff
--- a/plugins/s2s/mod_s2s.lua Fri Feb 24 15:24:10 2012 +0000 +++ b/plugins/s2s/mod_s2s.lua Fri Feb 24 15:34:25 2012 +0000 @@ -20,6 +20,7 @@ local s2s_new_outgoing = require "core.s2smanager".new_outgoing; local s2s_destroy_session = require "core.s2smanager".destroy_session; local uuid_gen = require "util.uuid".generate; +local cert_verify_identity = require "util.x509".verify_identity; local s2sout = module:require("s2sout");