mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +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 = unix.stream();
|
||||||
sock:settimeout(0);
|
sock:settimeout(0);
|
||||||
os.remove(socket_path);
|
os.remove(socket_path);
|
||||||
assert(sock:bind(socket_path));
|
local ok, err = sock:bind(socket_path);
|
||||||
assert(sock:listen());
|
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
|
if server.wrapserver then
|
||||||
conn = server.wrapserver(sock, socket_path, 0, listeners);
|
conn = server.wrapserver(sock, socket_path, 0, listeners);
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue