diff options
author | Matthew Wild <mwild1@gmail.com> | 2022-04-13 18:46:26 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2022-04-13 18:46:26 +0100 |
commit | 7fc174f0457db567ec71e769ccde327d88364cb2 (patch) | |
tree | b2f7cda8537d1f9351e5266cd5e673d21488896a /util | |
parent | a885cc53fda6f6f07ff69af0a7d01376223f2a0b (diff) | |
parent | 89934124b819b592f5a56f7135c3b037c373d919 (diff) | |
download | prosody-7fc174f0457db567ec71e769ccde327d88364cb2.tar.gz prosody-7fc174f0457db567ec71e769ccde327d88364cb2.zip |
Merge 0.12->trunk
Diffstat (limited to 'util')
-rw-r--r-- | util/prosodyctl/check.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/prosodyctl/check.lua b/util/prosodyctl/check.lua index 4b09ad8d..cdea04b9 100644 --- a/util/prosodyctl/check.lua +++ b/util/prosodyctl/check.lua @@ -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); |