~ubuntu-branches/ubuntu/raring/mumble/raring

« back to all changes in this revision

Viewing changes to src/mumble/ServerHandler.h

  • Committer: Bazaar Package Importer
  • Author(s): Thorvald Natvig, Patrick Matthäi, Thorvald Natvig
  • Date: 2011-02-19 22:58:58 UTC
  • mfrom: (9.1.15 sid)
  • Revision ID: james.westby@ubuntu.com-20110219225858-0xlftrf4z1z4jt9e
Tags: 1.2.3-1
[ Patrick Matthäi ]
* Do not build with non existant libpulse-dev on hurd-i386.

[ Thorvald Natvig ]
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
class Connection;
42
42
class Message;
 
43
class VoiceRecorder;
43
44
 
44
45
class ServerHandlerMessageEvent : public QEvent {
45
46
        public:
59
60
                QString qsHostName;
60
61
                QString qsUserName;
61
62
                QString qsPassword;
62
 
                QString qsDigest;
63
63
                unsigned short usPort;
64
64
                bool bUdp;
65
65
                bool bStrong;
82
82
                QSslCipher qscCipher;
83
83
                ConnectionPtr cConnection;
84
84
                QByteArray qbaDigest;
 
85
                boost::shared_ptr<VoiceRecorder> recorder;
85
86
 
86
87
                unsigned int uiVersion;
87
88
                QString qsRelease;
121
122
                void removeChannelLink(unsigned int channel, unsigned int link);
122
123
                void requestChannelPermissions(unsigned int channel);
123
124
                void setSelfMuteDeafState(bool mute, bool deaf);
 
125
                void announceRecordingState(bool recording);
124
126
 
125
127
                void disconnect();
126
128
                void run();
138
140
                void sendPing();
139
141
};
140
142
 
 
143
typedef boost::shared_ptr<ServerHandler> ServerHandlerPtr;
 
144
 
141
145
#else
142
146
class ServerHandler;
143
147
#endif