summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/ScreenSharing/OutgoingScreenSharing.h')
-rw-r--r--Swiften/ScreenSharing/OutgoingScreenSharing.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Swiften/ScreenSharing/OutgoingScreenSharing.h b/Swiften/ScreenSharing/OutgoingScreenSharing.h
index d93b476..c00d11e 100644
--- a/Swiften/ScreenSharing/OutgoingScreenSharing.h
+++ b/Swiften/ScreenSharing/OutgoingScreenSharing.h
@@ -7,15 +7,17 @@
#pragma once
#include <Swiften/ScreenSharing/ScreenSharing.h>
#include <Swiften/Jingle/JingleContentID.h>
+#include <Swiften/Elements/RTPPayloadType.h>
namespace Swift {
class ConnectivityManager;
class JingleDescription;
class JingleTransportPayload;
class TimerFactory;
class Timer;
+ class RTPSession;
class OutgoingScreenSharing : public ScreenSharing {
public:
typedef boost::shared_ptr<OutgoingScreenSharing> ref;
@@ -38,8 +40,10 @@ namespace Swift {
JingleContentID contentID;
bool canceled;
bool sessionAccepted;
bool socketConnected;
+ RTPSession* rtpSession;
+ RTPPayloadType payloadTypeUsed;
TimerFactory* timerFactory;
boost::shared_ptr<Timer> connectionTimer;
};