mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
prosodyctl: check turn: show relayed address(es) in verbose mode
This commit is contained in:
parent
fa68985f24
commit
1af4939c11
1 changed files with 7 additions and 0 deletions
|
@ -158,6 +158,8 @@ local function check_turn_service(turn_service, ping_service)
|
|||
return result;
|
||||
end
|
||||
|
||||
result.relayed_addresses = alloc_response:get_xor_relayed_addresses();
|
||||
|
||||
if not ping_service then
|
||||
-- Success! We won't be running the relay test.
|
||||
return result;
|
||||
|
@ -1247,6 +1249,11 @@ local function check(arg)
|
|||
else
|
||||
if opts.verbose then
|
||||
print(("External IP: %s"):format(result.external_ip.address));
|
||||
if result.relayed_addresses then
|
||||
for i, relayed_address in ipairs(result.relayed_addresses) do
|
||||
print(("Relayed address %d: %s:%d"):format(i, relayed_address.address, relayed_address.port));
|
||||
end
|
||||
end
|
||||
if result.external_ip_pong then
|
||||
print(("TURN external IP: %s"):format(result.external_ip_pong.address));
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue