diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-07-23 02:32:00 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-07-23 02:32:00 +0100 |
commit | 49705c8ca43919c3c6474159a5474e18b2649193 (patch) | |
tree | 2dd4b02b52fa0cdf91e550684d05a077643380f2 | |
parent | 7dfac00cffc08f62ca827c5fae1f04cb3920d625 (diff) | |
download | prosody-49705c8ca43919c3c6474159a5474e18b2649193.tar.gz prosody-49705c8ca43919c3c6474159a5474e18b2649193.zip |
mod_console: Set default_interface to 127.0.0.1
-rw-r--r-- | plugins/mod_console.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_console.lua b/plugins/mod_console.lua index 3248ca8c..3e978900 100644 --- a/plugins/mod_console.lua +++ b/plugins/mod_console.lua @@ -14,7 +14,7 @@ local prosody = _G.prosody; local hosts = prosody.hosts; local connlisteners_register = require "net.connlisteners".register; -local console_listener = { default_port = 5582; default_mode = "*l"; }; +local console_listener = { default_port = 5582; default_mode = "*l"; default_interface = "127.0.0.1" }; require "util.iterators"; local jid_bare = require "util.jid".bare; |