mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
prosodyctl: check turn: Fail with error if our own address is supplied for the ping test
This commit is contained in:
parent
d0bd1e71d9
commit
afbef6406b
1 changed files with 6 additions and 0 deletions
|
@ -180,6 +180,12 @@ local function check_turn_service(turn_service, ping_service)
|
|||
-- Only a hostname specified, use default STUN port
|
||||
ping_host, ping_port = ping_service, 3478;
|
||||
end
|
||||
|
||||
if ping_host == turn_service.host then
|
||||
result.error = ("Unable to perform ping test: please supply an external STUN server address. See https://prosody.im/doc/turn#prosodyctl-check");
|
||||
return result;
|
||||
end
|
||||
|
||||
local ping_service_ip, err = socket.dns.toip(ping_host);
|
||||
if not ping_service_ip then
|
||||
result.error = "Unable to resolve ping service hostname: "..err;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue