mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.prosodyctl: check turn: ensure a result is always returned from a check (thanks eTaurus)
This commit is contained in:
parent
e98f777bb2
commit
89934124b8
1 changed files with 2 additions and 2 deletions
|
@ -153,7 +153,7 @@ local function check_turn_service(turn_service, ping_service)
|
|||
local alloc_response, err = receive_packet();
|
||||
if not alloc_response then
|
||||
result.error = "TURN server did not response to allocation request: "..err;
|
||||
return;
|
||||
return result;
|
||||
elseif alloc_response:is_err_resp() then
|
||||
result.error = ("TURN allocation failed: %d (%s)"):format(alloc_response:get_error());
|
||||
return result;
|
||||
|
@ -245,7 +245,7 @@ local function check_turn_service(turn_service, ping_service)
|
|||
local pong_data = ping_response:get_attribute("data");
|
||||
if not pong_data then
|
||||
result.error = "No data relayed from remote server";
|
||||
return;
|
||||
return result;
|
||||
end
|
||||
local pong = stun.new_packet():deserialize(pong_data);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue