aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-07-23 12:04:41 +0100
committerMatthew Wild <mwild1@gmail.com>2009-07-23 12:04:41 +0100
commit351a37ef5437d631d61975160d2b45d4789d0bd9 (patch)
treeeaa4a33315efefdd22884065b404358e4cb2bc1e /plugins
parent5870f3b790f875d3350a5c0d423d55d06b3c67bf (diff)
parent23a10d0390865c0e359e3a2e8faa53bd332a2941 (diff)
downloadprosody-351a37ef5437d631d61975160d2b45d4789d0bd9.tar.gz
prosody-351a37ef5437d631d61975160d2b45d4789d0bd9.zip
Merge with 0.5
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_console.lua2
-rw-r--r--plugins/mod_posix.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_console.lua b/plugins/mod_console.lua
index 28e12a62..c3a12857 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;
diff --git a/plugins/mod_posix.lua b/plugins/mod_posix.lua
index c00482c5..0f46888d 100644
--- a/plugins/mod_posix.lua
+++ b/plugins/mod_posix.lua
@@ -7,7 +7,7 @@
--
-local want_pposix_version = "0.3.0";
+local want_pposix_version = "0.3.1";
local pposix = assert(require "util.pposix");
if pposix._VERSION ~= want_pposix_version then module:log("warn", "Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version); end