Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamie Fraser <jamie.f@sabrienix.com>2011-03-04 18:48:14 +0300
committerStefan Hacker <dd0t@users.sourceforge.net>2011-03-06 22:41:12 +0300
commite83173c52fe8d4492c6d4193e8df4e240430df31 (patch)
treeb444be1e28d51695cd6fee43966452a27da18c3d /src/murmur/MurmurIce.cpp
parent8c952c3bd2412f013b900b0691d308e3073c88e1 (diff)
ICE: Add udpPing and tcpPing to User
Diffstat (limited to 'src/murmur/MurmurIce.cpp')
-rw-r--r--src/murmur/MurmurIce.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/murmur/MurmurIce.cpp b/src/murmur/MurmurIce.cpp
index 66b01d387..7c4c37ffc 100644
--- a/src/murmur/MurmurIce.cpp
+++ b/src/murmur/MurmurIce.cpp
@@ -91,6 +91,8 @@ static void userToUser(const ::User *p, Murmur::User &mp) {
mp.identity = u8(u->qsIdentity);
mp.context = u->ssContext;
mp.idlesecs = u->bwr.idleSeconds();
+ mp.udpPing = u->dUDPPingAvg;
+ mp.tcpPing = u->dTCPPingAvg;
mp.tcponly = ! u->bUdp;