Software /
code /
prosody
Diff
plugins/mod_admin_socket.lua @ 12418:dd47adf74e93 0.12
mod_admin_socket: Improve error reporting when socket can't be created (fixes #1719)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 19 Mar 2022 11:38:21 +0000 |
parent | 12393:6966026262f4 |
child | 12852:c35afa353f8f |
child | 12887:68df46926c26 |
line wrap: on
line diff
--- a/plugins/mod_admin_socket.lua Sat Mar 19 11:09:10 2022 +0000 +++ b/plugins/mod_admin_socket.lua Sat Mar 19 11:38:21 2022 +0000 @@ -62,8 +62,16 @@ sock = unix.stream(); sock:settimeout(0); os.remove(socket_path); - assert(sock:bind(socket_path)); - assert(sock:listen()); + local ok, err = sock:bind(socket_path); + if not ok then + module:log_status("error", "Unable to bind admin socket %s: %s", socket_path, err); + return; + end + local ok, err = sock:listen(); + if not ok then + module:log_status("error", "Unable to listen on admin socket %s: %s", socket_path, err); + return; + end if server.wrapserver then conn = server.wrapserver(sock, socket_path, 0, listeners); else