mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Initial s2s stuff
This commit is contained in:
parent
dba8f998cf
commit
ce86d8badc
3 changed files with 14 additions and 11 deletions
|
@ -23,14 +23,20 @@ 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),
|
||||
|
|
|
@ -827,5 +827,5 @@ return {
|
|||
stats = stats,
|
||||
closeall = closeall,
|
||||
addtimer = addtimer,
|
||||
|
||||
wraptlsclient = wraptlsclient,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue