aboutsummaryrefslogtreecommitdiffstats
path: root/core/s2smanager.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-04-10 10:36:01 +0100
committerMatthew Wild <mwild1@gmail.com>2009-04-10 10:36:01 +0100
commitd95e52160f1ed807c111bb3229e5fcaf23357568 (patch)
treeaadb1f65fd8e668571c626d08a133a3f01e71154 /core/s2smanager.lua
parent4e866f49ae456418e2339c69055af232842016e2 (diff)
downloadprosody-d95e52160f1ed807c111bb3229e5fcaf23357568.tar.gz
prosody-d95e52160f1ed807c111bb3229e5fcaf23357568.zip
core.s2smanager: Remove some debugging
Diffstat (limited to 'core/s2smanager.lua')
-rw-r--r--core/s2smanager.lua10
1 files changed, 2 insertions, 8 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua
index b57f2124..8fc03ba3 100644
--- a/core/s2smanager.lua
+++ b/core/s2smanager.lua
@@ -15,8 +15,8 @@ local socket = require "socket";
local format = string.format;
local t_insert, t_sort = table.insert, table.sort;
local get_traceback = debug.traceback;
-local tostring, pairs, ipairs, getmetatable, print, newproxy, error, tonumber
- = tostring, pairs, ipairs, getmetatable, print, newproxy, error, tonumber;
+local tostring, pairs, ipairs, getmetatable, newproxy, error, tonumber
+ = tostring, pairs, ipairs, getmetatable, newproxy, error, tonumber;
local idna_to_ascii = require "util.encodings".idna.to_ascii;
local connlisteners_get = require "net.connlisteners".get;
@@ -38,8 +38,6 @@ local dialback_secret = sha256_hash(tostring{} .. math.random() .. socket.gettim
local adns = require "net.adns";
-local debug = debug;
-
incoming_s2s = {};
local incoming_s2s = incoming_s2s;
@@ -212,19 +210,15 @@ function try_connect(host_session, connect_host, connect_port)
conn = wrapclient(conn, connect_host, connect_port, cl, cl.default_mode or 1, hosts[from_host].ssl_ctx, false );
host_session.conn = conn;
- log("debug", "conn wrapped")
-- Register this outgoing connection so that xmppserver_listener knows about it
-- otherwise it will assume it is a new incoming connection
cl.register_outgoing(conn, host_session);
- log("debug", "outgoing registered")
-
local w = conn.write;
host_session.sends2s = function (t) log("debug", "sending: %s", tostring(t)); w(tostring(t)); end
conn.write(format([[<stream:stream xmlns='jabber:server' xmlns:db='jabber:server:dialback' xmlns:stream='http://etherx.jabber.org/streams' from='%s' to='%s' version='1.0'>]], from_host, to_host));
log("debug", "Connection attempt in progress...");
- print("foo")
return true;
end