diff options
author | Kim Alvefur <zash@zash.se> | 2014-02-09 15:13:46 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-02-09 15:13:46 +0100 |
commit | 5eca01ae59084dd115e47bb8067657a0d82a9594 (patch) | |
tree | bd8a2cfc5fb9bf12e626c68c95731108f4f59149 | |
parent | b3971532af8c7cee385bd5b2bf3efc61332a43b8 (diff) | |
download | prosody-5eca01ae59084dd115e47bb8067657a0d82a9594.tar.gz prosody-5eca01ae59084dd115e47bb8067657a0d82a9594.zip |
mod_s2s: Log a warning if no local addresses are found, as this breaks s2sout
-rw-r--r-- | plugins/mod_s2s/s2sout.lib.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_s2s/s2sout.lib.lua b/plugins/mod_s2s/s2sout.lib.lua index 575d37ac..b24faf85 100644 --- a/plugins/mod_s2s/s2sout.lib.lua +++ b/plugins/mod_s2s/s2sout.lib.lua @@ -347,6 +347,9 @@ module:hook_global("service-added", function (event) has_ipv4 = true; end end + if not (has_ipv4 or has_ipv6) then + module:log("warn", "No local IPv4 or IPv6 addresses detected, outgoing connections may fail"); + end end); return s2sout; |