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:
Kim Alvefur 2020-06-01 17:27:50 +02:00
parent 7eadd412eb
commit ac8a1c76f4

View file

@ -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()