mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
mod_admin_socket: Use wrapserver if available
Why have a custom accept function when this is net.server's entire thing?
This commit is contained in:
parent
7eadd412eb
commit
ac8a1c76f4
1 changed files with 5 additions and 1 deletions
|
@ -55,7 +55,11 @@ function module.load()
|
|||
os.remove(socket_path);
|
||||
assert(sock:bind(socket_path));
|
||||
assert(sock:listen());
|
||||
conn = server.watchfd(sock:getfd(), accept_connection);
|
||||
if server.wrapserver then
|
||||
conn = server.wrapserver(sock, socket_path, 0, listeners);
|
||||
else
|
||||
conn = server.watchfd(sock:getfd(), accept_connection);
|
||||
end
|
||||
end
|
||||
|
||||
function module.unload()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue