summaryrefslogtreecommitdiffstats
path: root/src/server/net/client.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/net/client.h')
-rw-r--r--src/server/net/client.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/server/net/client.h b/src/server/net/client.h
index 198b213..5623717 100644
--- a/src/server/net/client.h
+++ b/src/server/net/client.h
@@ -44,7 +44,6 @@ public:
inline const QString& host() const { return _host; }
inline const QString ip() const { return _socket->peerAddress().toString(); }
inline const int id() const { return _id; }
- inline const int desiredProjectionSource() const { return _desiredProjectionSource; }
inline const int currentProjectionSource() const { return _currentProjectionSource; }
// To be replaced by states
inline const bool isActiveVncClient() const { return _activeVncClient; }
@@ -53,15 +52,8 @@ public:
// Setters
inline void setBroadcastSource(bool enable) { _isBroadcastSource = enable; }
- inline void setDesiredProjectionSource(int source) { _desiredProjectionSource = source; }
inline void setTutor(bool enable){ _isTutor = enable; }
-
- //New ones
-//b void startVncServer();
-
-
-
//Send message stuff
void startVncServer();
void stopVncServer();
@@ -82,7 +74,6 @@ private:
NetworkMessage _fromClient;
int _timerIdAuthTimeout, _timerPingTimeout;
int _id; // this client's unique id
- int _desiredProjectionSource;
bool _isBroadcastSource; // Tells whether this client is currently the VNC broadcast source.
int _currentProjectionSource;
QString _vncRwPass, _vncRoPass;