Skip to content

Commit 7cc7add

Browse files
committed
Merge Swap to completely using TCP ping for checking if UDP is available (pr-3052)
12ffa24 - tweak(mumble): swap to completely using TCP ping for checking if UDP is available
2 parents 3610cc0 + 12ffa24 commit 7cc7add

File tree

2 files changed

+20
-13
lines changed

2 files changed

+20
-13
lines changed

code/components/voip-mumble/include/MumbleClientImpl.h

+6-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,12 @@ class MumbleClient : public IMumbleClient, public Botan::TLS::Callbacks
239239

240240
bool m_hasUdp = false;
241241

242-
std::chrono::milliseconds m_lastUdp;
242+
bool m_udpTimedOut = false;
243+
244+
// the time in milliseconds since the player joined the mumble server
245+
// This is used in for `Ping` packets to determine if we should allow the client to swap from UDP -> TCP
246+
// By default we wont swap back to TCP for the first 20 seconds of the clients connection (only after we have UDP)
247+
std::chrono::milliseconds m_timeSinceJoin;
243248

244249
std::chrono::milliseconds m_nextPing;
245250

code/components/voip-mumble/src/MumbleClient.cpp

+14-12
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ static __declspec(thread) MumbleClient* g_currentMumbleClient;
2424

2525
using namespace std::chrono_literals;
2626

27-
constexpr auto kUDPTimeout = 5000ms;
2827
constexpr auto kUDPPingInterval = 1000ms;
2928
constexpr uint16_t kMaxUdpPacket = 1024;
3029

@@ -39,7 +38,6 @@ void MumbleClient::Initialize()
3938

4039
m_voiceTarget = 0;
4140

42-
m_lastUdp = {};
4341
m_nextPing = {};
4442

4543
m_loop = Instance<net::UvLoopManager>::Get()->GetOrCreate("mumble");
@@ -116,6 +114,7 @@ void MumbleClient::Initialize()
116114

117115
// don't start idle timer here - it should only start after TLS handshake is done!
118116

117+
m_timeSinceJoin = msec();
119118
m_connectionInfo.isConnected = true;
120119
});
121120

@@ -166,11 +165,6 @@ void MumbleClient::Initialize()
166165
m_idleTimer = m_loop->Get()->resource<uvw::TimerHandle>();
167166
m_idleTimer->on<uvw::TimerEvent>([this](const uvw::TimerEvent& ev, uvw::TimerHandle& t)
168167
{
169-
if (m_hasUdp && (msec() - m_lastUdp) > kUDPTimeout)
170-
{
171-
m_hasUdp = false;
172-
console::PrintWarning("mumble", "Server isn't responding to UDP packets, swapping to TCP.\n");
173-
}
174168

175169
auto lockedIsActive = [this]()
176170
{
@@ -428,7 +422,6 @@ concurrency::task<MumbleConnectionInfo*> MumbleClient::ConnectAsync(const net::P
428422

429423
m_tcpPingCount = 0;
430424

431-
m_lastUdp = {};
432425

433426
memset(m_tcpPings, 0, sizeof(m_tcpPings));
434427

@@ -782,8 +775,6 @@ void MumbleClient::HandleUDP(const uint8_t* buf, size_t size)
782775
return;
783776
}
784777

785-
// update UDP timestamp
786-
m_lastUdp = msec();
787778

788779
// handle voice packet
789780
HandleVoice(outBuf, size - 4);
@@ -971,10 +962,21 @@ void MumbleClient::HandlePing(const MumbleProto::Ping& ping)
971962
m_crypto.m_remoteLost = ping.lost();
972963
m_crypto.m_remoteResync = ping.resync();
973964

974-
if (m_hasUdp && (m_crypto.m_remoteGood == 0 || m_crypto.m_localGood == 0) && (msec() - m_lastUdp) > 2s)
965+
if (m_hasUdp && (m_crypto.m_remoteGood == 0 || m_crypto.m_localGood == 0) && (msec() - m_timeSinceJoin) > 20s)
975966
{
976-
console::PrintWarning("mumble", "UDP packets can *not* be received. Switching to TCP tunnel mode.\n");
977967
m_hasUdp = false;
968+
if (m_crypto.m_remoteGood == 0 && m_crypto.m_localGood == 0)
969+
{
970+
console::PrintWarning("mumble", "The server couldn't send or receive the clients UDP packets. Switching to TCP mode.");
971+
}
972+
else if (m_crypto.m_remoteGood == 0)
973+
{
974+
console::PrintWarning("mumble", "The clients UDP packets are not being received by the server. Switching to TCP mode.");
975+
}
976+
else
977+
{
978+
console::PrintWarning("mumble", "The client isn't receiving UDP packets. Switching to TCP mode.");
979+
}
978980
}
979981
else if (!m_hasUdp && m_crypto.m_remoteGood > 3 && m_crypto.m_localGood > 3)
980982
{

0 commit comments

Comments
 (0)