# HG changeset patch # User Kim Alvefur # Date 1591025270 -7200 # Node ID 1cfae9e850212766916d60643e7ac10f1dea14ee # Parent e12690a37795b01509c412afbc465b412591f411 mod_admin_socket: Use wrapserver if available Why have a custom accept function when this is net.server's entire thing? diff -r e12690a37795 -r 1cfae9e85021 plugins/mod_admin_socket.lua --- a/plugins/mod_admin_socket.lua Mon Jun 01 17:19:08 2020 +0200 +++ b/plugins/mod_admin_socket.lua Mon Jun 01 17:27:50 2020 +0200 @@ -55,7 +55,11 @@ 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()