/* * Copyright (c) 2011 Tobias Markmann * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #include #include #include #include #include #include #include #include namespace Swift { JingleFileTransferReceivedSerializer::JingleFileTransferReceivedSerializer() { } std::string JingleFileTransferReceivedSerializer::serializePayload(boost::shared_ptr payload) const { XMLElement receivedElement("received", "urn:xmpp:jingle:apps:file-transfer:3"); XMLElement::ref fileElement = boost::make_shared("file", "http://jabber.org/protocol/si/profile/file-transfer"); fileElement->setAttribute("hash", payload->getFileInfo().getHash()); if (payload->getFileInfo().getAlgo() != "md5") { fileElement->setAttribute("algo", payload->getFileInfo().getAlgo()); } receivedElement.addNode(fileElement); return receivedElement.serialize(); } }