Fix the reversed to/from on the final db:result. Fixes M-Link and Gmail. Thanks dwd!!
[prosody.git] / net / connlisteners.lua
index a5c8755f28790ae40a6b25974753fe4c82dddc90..431d8717a898271a35ce3bc10dfca4330abc9410 100644 (file)
@@ -23,14 +23,19 @@ function deregister(name)
        listeners[name] = nil;
 end
 
-function start(name, udata)
-       local h = listeners[name]
+function get(name)
+       local h = listeners[name];
        if not h then
                pcall(dofile, "net/"..name:gsub("[^%w%-]", "_").."_listener.lua");
                h = listeners[name];
-               if not h then
-                       error("No such connection module: "..name, 0);
-               end
+       end
+       return h;
+end
+
+function start(name, udata)
+       local h = get(name);
+       if not h then
+               error("No such connection module: "..name, 0);
        end
        return server_add(h, 
                        udata.port or h.default_port or error("Can't start listener "..name.." because no port was specified, and it has no default port", 0),