@@ -24,7 +24,6 @@ static __declspec(thread) MumbleClient* g_currentMumbleClient;
24
24
25
25
using namespace std ::chrono_literals;
26
26
27
- constexpr auto kUDPTimeout = 5000ms;
28
27
constexpr auto kUDPPingInterval = 1000ms;
29
28
constexpr uint16_t kMaxUdpPacket = 1024 ;
30
29
@@ -39,7 +38,6 @@ void MumbleClient::Initialize()
39
38
40
39
m_voiceTarget = 0 ;
41
40
42
- m_lastUdp = {};
43
41
m_nextPing = {};
44
42
45
43
m_loop = Instance<net::UvLoopManager>::Get ()->GetOrCreate (" mumble" );
@@ -116,6 +114,7 @@ void MumbleClient::Initialize()
116
114
117
115
// don't start idle timer here - it should only start after TLS handshake is done!
118
116
117
+ m_timeSinceJoin = msec ();
119
118
m_connectionInfo.isConnected = true ;
120
119
});
121
120
@@ -166,11 +165,6 @@ void MumbleClient::Initialize()
166
165
m_idleTimer = m_loop->Get ()->resource <uvw::TimerHandle>();
167
166
m_idleTimer->on <uvw::TimerEvent>([this ](const uvw::TimerEvent& ev, uvw::TimerHandle& t)
168
167
{
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
- }
174
168
175
169
auto lockedIsActive = [this ]()
176
170
{
@@ -428,7 +422,6 @@ concurrency::task<MumbleConnectionInfo*> MumbleClient::ConnectAsync(const net::P
428
422
429
423
m_tcpPingCount = 0 ;
430
424
431
- m_lastUdp = {};
432
425
433
426
memset (m_tcpPings, 0 , sizeof (m_tcpPings));
434
427
@@ -782,8 +775,6 @@ void MumbleClient::HandleUDP(const uint8_t* buf, size_t size)
782
775
return ;
783
776
}
784
777
785
- // update UDP timestamp
786
- m_lastUdp = msec ();
787
778
788
779
// handle voice packet
789
780
HandleVoice (outBuf, size - 4 );
@@ -971,10 +962,21 @@ void MumbleClient::HandlePing(const MumbleProto::Ping& ping)
971
962
m_crypto.m_remoteLost = ping.lost ();
972
963
m_crypto.m_remoteResync = ping.resync ();
973
964
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 )
975
966
{
976
- console::PrintWarning (" mumble" , " UDP packets can *not* be received. Switching to TCP tunnel mode.\n " );
977
967
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
+ }
978
980
}
979
981
else if (!m_hasUdp && m_crypto.m_remoteGood > 3 && m_crypto.m_localGood > 3 )
980
982
{
0 commit comments