main.lua

changeset 36
62998e5319e3
parent 34
fd693ef5d978
child 37
06eadafafefa
--- a/main.lua	Wed Oct 01 18:51:28 2008 +0500
+++ b/main.lua	Wed Oct 01 22:11:28 2008 +0100
@@ -8,6 +8,10 @@
 function log(type, area, message)
 	print(type, area, message);
 end
+
+dofile "lxmppd.cfg"
+ 
+sessions = {};
  
 require "core.stanza_dispatch"
 require "core.xmlhandlers"
@@ -30,26 +34,10 @@
 local init_xmlhandlers = xmlhandlers.init_xmlhandlers;
 ------------------------------
 
-sessions = {};
-hosts = 	{ 
-			["localhost"] = 	{
-							type = "local";
-							connected = true;
-							sessions = {};
-						};
-			["getjabber.ath.cx"] = 	{
-							type = "local";
-							connected = true;
-							sessions = {};
-						};
-		}
+
 
 local hosts, users = hosts, users;
 
-local ssl_ctx = { mode = "server", protocol = "sslv23", key = "/home/matthew/ssl_cert/server.key",
-    certificate = "/home/matthew/ssl_cert/server.crt", capath = "/etc/ssl/certs", verify = "none", }
-
-
 function connect_host(host)
 	hosts[host] = { type = "remote", sendbuffer = {} };
 end

mercurial