aboutsummaryrefslogtreecommitdiffstats
path: root/main.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-10-05 17:33:38 +0100
committerMatthew Wild <mwild1@gmail.com>2008-10-05 17:33:38 +0100
commitab40a27df16e912e23812e2d75e52c7f083b81d8 (patch)
tree6fbd9e847fcc0789ae4971a3d3a6e0b9bc6f6b0c /main.lua
parent11883a5b0bd98527f9cf6ad644a285551dce02c4 (diff)
downloadprosody-ab40a27df16e912e23812e2d75e52c7f083b81d8.tar.gz
prosody-ab40a27df16e912e23812e2d75e52c7f083b81d8.zip
TLS: Handshake works, no data after that
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.lua b/main.lua
index 821b3273..633c3df8 100644
--- a/main.lua
+++ b/main.lua
@@ -101,7 +101,7 @@ setmetatable(_G, { __index = function (t, k) print("WARNING: ATTEMPT TO READ A N
local protected_handler = function (conn, data, err) local success, ret = pcall(handler, conn, data, err); if not success then print("ERROR on "..tostring(conn)..": "..ret); conn:close(); end end;
local protected_disconnect = function (conn, err) local success, ret = pcall(disconnect, conn, err); if not success then print("ERROR on "..tostring(conn).." disconnect: "..ret); conn:close(); end end;
-server.add( { listener = protected_handler, disconnect = protected_disconnect }, 5222, "*", 1, nil ) -- server.add will send a status message
-server.add( { listener = protected_handler, disconnect = protected_disconnect }, 5223, "*", 1, ssl_ctx ) -- server.add will send a status message
+server.add( { listener = protected_handler, disconnect = protected_disconnect }, 5222, "*", 1, ssl_ctx ) -- server.add will send a status message
+--server.add( { listener = protected_handler, disconnect = protected_disconnect }, 5223, "*", 1, ssl_ctx ) -- server.add will send a status message
server.loop();