mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_admin_socket: Improve error reporting when socket can't be created (fixes #1719)
This commit is contained in:
parent
afbef6406b
commit
f8690bf151
1 changed files with 10 additions and 2 deletions
|
@ -62,8 +62,16 @@ function module.load()
|
|||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue