/* * Copyright (c) 2011 Jan Kaluza * Licensed under the Simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #include #include #include #include #include namespace Transport { // This payload is NOT part of ANY XEP and it is only // libtransport related extension. BlockSerializer::BlockSerializer() : Swift::GenericPayloadSerializer() { } std::string BlockSerializer::serializePayload(boost::shared_ptr attention) const { Swift::XMLElement attentionElement("block", "urn:xmpp:block:0"); return attentionElement.serialize(); } }