summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2015-03-01 21:00:49 (GMT)
committerKevin Smith <kevin.smith@isode.com>2015-03-27 23:01:57 (GMT)
commit1d09d9ead06be72ee0c4026aa027cd90e6f1546b (patch)
tree02864423c5a06a29fafabcc3e2fdd764fd831806 /Swiften/Jingle/FakeJingleSession.h
parentdde0c6a3d4c437d7178f5db628feb4f3a04a22f2 (diff)
downloadswift-1d09d9ead06be72ee0c4026aa027cd90e6f1546b.zip
swift-1d09d9ead06be72ee0c4026aa027cd90e6f1546b.tar.bz2
Fix OutgoingJingleFileTransferTest and enable it again
Test-Information: Unit tests pass. Change-Id: I793fb65fd2e760daddab0142abc33d4aa5b4fce5
Diffstat (limited to 'Swiften/Jingle/FakeJingleSession.h')
-rw-r--r--Swiften/Jingle/FakeJingleSession.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/Swiften/Jingle/FakeJingleSession.h b/Swiften/Jingle/FakeJingleSession.h
index 19028ad..f250b1a 100644
--- a/Swiften/Jingle/FakeJingleSession.h
+++ b/Swiften/Jingle/FakeJingleSession.h
@@ -5,7 +5,7 @@
*/
/*
- * Copyright (c) 2013-2014 Isode Limited.
+ * Copyright (c) 2013-2015 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
@@ -96,7 +96,15 @@ namespace Swift {
virtual void sendTransportReject(const JingleContentID&, JingleTransportPayload::ref) SWIFTEN_OVERRIDE;
virtual void sendTransportReplace(const JingleContentID&, JingleTransportPayload::ref) SWIFTEN_OVERRIDE;
+ void handleSessionTerminateReceived(boost::optional<JinglePayload::Reason>);
+ void handleSessionAcceptReceived(const JingleContentID&, boost::shared_ptr<JingleDescription>, boost::shared_ptr<JingleTransportPayload>);
+ void handleSessionInfoReceived(boost::shared_ptr<JinglePayload>);
+
void handleTransportReplaceReceived(const JingleContentID&, JingleTransportPayload::ref);
+ void handleTransportAcceptReceived(const JingleContentID&, boost::shared_ptr<JingleTransportPayload>);
+ void handleTransportInfoReceived(const JingleContentID&, boost::shared_ptr<JingleTransportPayload>);
+ void handleTransportRejectReceived(const JingleContentID&, boost::shared_ptr<JingleTransportPayload>);
+ void handleTransportInfoAcknowledged(const std::string& id);
public:
std::vector<Command> calledCommands;