diff options
author | Tobias Markmann <tm@ayena.de> | 2015-01-11 12:39:50 (GMT) |
---|---|---|
committer | Swift Review <review@swift.im> | 2015-02-11 09:35:33 (GMT) |
commit | 9281a35fb912657f98ff0918ed683b2ef6071b45 (patch) | |
tree | 9a9ac8a5e9cf9f2d3680fbc2323e643f03bfe5d8 /Swiften/Jingle | |
parent | 779f0d57bc9d90300aad0b1386dc937612ac35f4 (diff) | |
download | swift-9281a35fb912657f98ff0918ed683b2ef6071b45.zip swift-9281a35fb912657f98ff0918ed683b2ef6071b45.tar.bz2 |
Restrict generated candidates and selected candidates to those allowed
by supplied FileTransferOptions.
Test-Information:
Automatically tested all FileTransferOption combinations and verified
it generates only allowed candidates.
Change-Id: I0b3ce983a3f230a4c2c3940f5d928fd74d6012b6
Diffstat (limited to 'Swiften/Jingle')
-rw-r--r-- | Swiften/Jingle/JingleSessionImpl.cpp | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/Swiften/Jingle/JingleSessionImpl.cpp b/Swiften/Jingle/JingleSessionImpl.cpp index 8299fac..a5273d6 100644 --- a/Swiften/Jingle/JingleSessionImpl.cpp +++ b/Swiften/Jingle/JingleSessionImpl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010-2013 Isode Limited. + * Copyright (c) 2010-2015 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ @@ -151,8 +151,17 @@ std::string JingleSessionImpl::sendTransportInfo(const JingleContentID& id, Jing return sendSetRequest(payload); } -void JingleSessionImpl::sendTransportReject(const JingleContentID& /* id */, JingleTransportPayload::ref /* transPayload */) { - SWIFT_LOG(debug) << "NOT IMPLEMENTED YET!!!!" << std::endl; +void JingleSessionImpl::sendTransportReject(const JingleContentID& id, JingleTransportPayload::ref transPayload) { + JinglePayload::ref payload = createPayload(); + + JingleContentPayload::ref content = boost::make_shared<JingleContentPayload>(); + content->setCreator(id.getCreator()); + content->setName(id.getName()); + content->addTransport(transPayload); + payload->setAction(JinglePayload::TransportReject); + payload->addPayload(content); + + sendSetRequest(payload); } void JingleSessionImpl::sendTransportReplace(const JingleContentID& id, JingleTransportPayload::ref transPayload) { |