mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_component: Use net_activate_ports to start port listener based on config
This commit is contained in:
parent
9eadfb191e
commit
0d7ecce88f
1 changed files with 8 additions and 1 deletions
|
@ -214,4 +214,11 @@ end
|
|||
|
||||
connlisteners.register('component', component_listener);
|
||||
|
||||
module:add_event_hook("server-starting", function () connlisteners.start("component"); end);
|
||||
module:add_event_hook("server-started",
|
||||
function ()
|
||||
if net_activate_ports then
|
||||
net_activate_ports("component_ports", "component", {5437}, "tcp");
|
||||
else
|
||||
error("No net_activate_ports: Using an incompatible version of Prosody?");
|
||||
end
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue