summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordknn <yoann.blein@free.fr>2012-09-22 08:33:47 (GMT)
committerdknn <yoann.blein@free.fr>2012-09-22 09:34:49 (GMT)
commitced4cbf27545620b2a9be59173fd87305cab4a8b (patch)
tree0dd6f4037e175ff0526b2ed973ae06789fec7f2c /Swiften/ScreenSharing/ScreenSharing.h
parent949278e9418e4090c2f3c68ed313cf4853b25ef1 (diff)
downloadswift-contrib-ced4cbf27545620b2a9be59173fd87305cab4a8b.zip
swift-contrib-ced4cbf27545620b2a9be59173fd87305cab4a8b.tar.bz2
Add use of NAT traversal
Diffstat (limited to 'Swiften/ScreenSharing/ScreenSharing.h')
-rw-r--r--Swiften/ScreenSharing/ScreenSharing.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Swiften/ScreenSharing/ScreenSharing.h b/Swiften/ScreenSharing/ScreenSharing.h
index 6107ec5..9a74c16 100644
--- a/Swiften/ScreenSharing/ScreenSharing.h
+++ b/Swiften/ScreenSharing/ScreenSharing.h
@@ -18,6 +18,7 @@ namespace Swift {
class UDPSocketFactory;
class UDPSocket;
class RTPSession;
+ class ConnectivityManager;
class ScreenSharing {
public:
@@ -36,7 +37,7 @@ namespace Swift {
};
public:
- ScreenSharing(boost::shared_ptr<JingleSession> jingleSession, UDPSocketFactory* udpSocketFactory);
+ ScreenSharing(boost::shared_ptr<JingleSession> jingleSession, UDPSocketFactory* udpSocketFactory, ConnectivityManager* connectivityManager);
virtual ~ScreenSharing();
virtual void cancel() = 0;
@@ -58,5 +59,6 @@ namespace Swift {
boost::shared_ptr<JingleSession> jingleSession;
UDPSocketFactory* udpSocketFactory;
+ ConnectivityManager* connectivityManager;
};
}