From dfebe4b6b999845c0ff6c15073f0ae0d0e5b4183 Mon Sep 17 00:00:00 2001 From: dknn Date: Sat, 7 Jul 2012 12:54:37 +0200 Subject: Add missing file diff --git a/Swiften/Elements/JingleRawUDPTransportPayload.h b/Swiften/Elements/JingleRawUDPTransportPayload.h new file mode 100644 index 0000000..ecd6539 --- /dev/null +++ b/Swiften/Elements/JingleRawUDPTransportPayload.h @@ -0,0 +1,55 @@ +/* + * Copyright (c) 2012 Yoann Blein + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include + +#include + +#include +#include + + +namespace Swift { + class JingleRawUDPTransportPayload : public JingleTransportPayload { + public: + struct Candidate { + enum Type { + Unknown, // default case + Host, + PeerReflected, + Relayed, + ServerReflected, + }; + + Candidate() : component(0), generation(0), type(Unknown) {} + + boost::uint8_t component; + boost::uint8_t generation; + std::string cid; + HostAddressPort hostAddressPort; + Type type; + }; + + public: + typedef boost::shared_ptr ref; + + public: + JingleRawUDPTransportPayload() {} + + const std::vector& getCandidates() const { + return candidates; + } + + void addCandidate(const Candidate& candidate) { + candidates.push_back(candidate); + } + + private: + std::vector candidates; + }; +} -- cgit v0.10.2-6-g49f6