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:
authorThorvald Natvig <slicer@users.sourceforge.net>2010-01-28 14:34:38 +0300
committerThorvald Natvig <slicer@users.sourceforge.net>2010-01-28 14:34:38 +0300
commit7d8100275d9e530e869b1a47201089192e1af76b (patch)
tree88f06f4d131bcc92e841ca4d4e21d4542bf864b2 /src/murmur/ServerUser.h
parentd87855071a9b4ad417d1f1ba6846361e4ff688de (diff)
Split ServerUser from Server.cpp
Diffstat (limited to 'src/murmur/ServerUser.h')
-rw-r--r--src/murmur/ServerUser.h126
1 files changed, 126 insertions, 0 deletions
diff --git a/src/murmur/ServerUser.h b/src/murmur/ServerUser.h
new file mode 100644
index 000000000..f0d161b78
--- /dev/null
+++ b/src/murmur/ServerUser.h
@@ -0,0 +1,126 @@
+/* Copyright (C) 2005-2010, Thorvald Natvig <thorvald@natvig.com>
+ Copyright (C) 2009, Stefan Hacker <dd0t@users.sourceforge.net>
+
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+
+ - Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ - Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+ - Neither the name of the Mumble Developers nor the names of its
+ contributors may be used to endorse or promote products derived from this
+ software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+
+#ifndef _SERVERUSER_H
+#define _SERVERUSER_H
+
+#include "murmur_pch.h"
+#include "User.h"
+#include "Connection.h"
+#include "Net.h"
+#include "Timer.h"
+
+// Unfortunately, this needs to be "large enough" to hold
+// enough frames to account for both short-term and
+// long-term "maladjustments".
+
+#define N_BANDWIDTH_SLOTS 360
+
+struct BandwidthRecord {
+ int iRecNum;
+ int iSum;
+ Timer qtFirst;
+ unsigned short a_iBW[N_BANDWIDTH_SLOTS];
+ Timer a_qtWhen[N_BANDWIDTH_SLOTS];
+
+ BandwidthRecord();
+ bool addFrame(int size, int maxpersec);
+ int onlineSeconds() const;
+ int idleSeconds() const;
+ int bandwidth() const;
+};
+
+struct WhisperTarget {
+ struct Channel {
+ int iId;
+ bool bChildren;
+ bool bLinks;
+ QString qsGroup;
+ };
+ QList<unsigned int> qlSessions;
+ QList<WhisperTarget::Channel> qlChannels;
+};
+
+class Server;
+
+class ServerUser : public Connection, public User {
+ private:
+ Q_OBJECT
+ Q_DISABLE_COPY(ServerUser)
+ protected:
+ Server *s;
+ public:
+ enum State { Connected, Authenticated };
+ State sState;
+ operator const QString() const;
+
+ float dUDPPingAvg, dUDPPingVar;
+ float dTCPPingAvg, dTCPPingVar;
+ quint64 uiUDPPackets, uiTCPPackets;
+
+ unsigned int uiVersion;
+ QString qsRelease;
+ QString qsOS;
+ QString qsOSVersion;
+
+ std::string ssContext;
+ QString qsIdentity;
+
+ bool bVerified;
+ QStringList qslEmail;
+
+ HostAddress haAddress;
+ bool bUdp;
+
+ QList<int> qlCodecs;
+
+ QStringList qslAccessTokens;
+
+ QMap<int, WhisperTarget> qmTargets;
+ typedef QPair<QSet<ServerUser *>, QSet<ServerUser *> > TargetCache;
+ QMap<int, TargetCache> qmTargetCache;
+ QMap<QString, QString> qmWhisperRedirect;
+
+ int iLastPermissionCheck;
+ QMap<int, unsigned int> qmPermissionSent;
+#ifdef Q_OS_UNIX
+ int sUdpSocket;
+#else
+ SOCKET sUdpSocket;
+#endif
+ BandwidthRecord bwr;
+ struct sockaddr_storage saiUdpAddress;
+ ServerUser(Server *parent, QSslSocket *socket);
+};
+
+#else
+class ServerUser;
+#endif