From ab40a27df16e912e23812e2d75e52c7f083b81d8 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Sun, 5 Oct 2008 17:33:38 +0100 Subject: TLS: Handshake works, no data after that --- core/modulemanager.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'core') diff --git a/core/modulemanager.lua b/core/modulemanager.lua index 696e0f08..1ad1f990 100644 --- a/core/modulemanager.lua +++ b/core/modulemanager.lua @@ -49,6 +49,7 @@ function loadall() load("legacyauth"); load("roster"); load("register"); + load("tls"); end function load(name) -- cgit v1.2.3 From 0c9336110d8dceb2c9801ee68b9817801014fefe Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Sun, 5 Oct 2008 19:10:21 +0100 Subject: Working TLS! --- core/stanza_router.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'core') diff --git a/core/stanza_router.lua b/core/stanza_router.lua index 89bea131..489bb96d 100644 --- a/core/stanza_router.lua +++ b/core/stanza_router.lua @@ -11,6 +11,7 @@ require "util.jid" local jid_split = jid.split; function core_process_stanza(origin, stanza) + log("debug", "Received: "..tostring(stanza)) local to = stanza.attr.to; if not to or (hosts[to] and hosts[to].type == "local") then -- cgit v1.2.3