Software / code / prosody
Diff
plugins/mod_admin_socket.lua @ 10862:1cfae9e85021
mod_admin_socket: Use wrapserver if available
Why have a custom accept function when this is net.server's entire
thing?
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Mon, 01 Jun 2020 17:27:50 +0200 |
| parent | 10855:70ac7d23673d |
| child | 10866:5265f7fe11dd |
line wrap: on
line diff
--- 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()