HomeSort by relevance Sort by last modified time
    Searched defs:StunAttribute (Results 1 - 2 of 2) sorted by null

  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stun.h 106 class StunAttribute;
137 void AddAttribute(StunAttribute* attr);
151 std::vector<StunAttribute*>* attrs_;
153 const StunAttribute* GetAttribute(StunAttributeType type) const;
157 class StunAttribute {
159 virtual ~StunAttribute() {}
175 static StunAttribute* Create(uint16 type, uint16 length);
186 StunAttribute(uint16 type, uint16 length);
196 class StunAddressAttribute : public StunAttribute {
224 class StunUInt32Attribute : public StunAttribute {
    [all...]
stun.cc 52 attrs_ = new std::vector<StunAttribute*>();
66 void StunMessage::AddAttribute(StunAttribute* attr) {
136 const StunAttribute* StunMessage::GetAttribute(StunAttributeType type) const {
176 StunAttribute* attr = StunAttribute::Create(attr_type, attr_length);
205 StunAttribute::StunAttribute(uint16 type, uint16 length)
209 StunAttribute* StunAttribute::Create(uint16 type, uint16 length) {
261 StunAddressAttribute* StunAttribute::CreateAddress(uint16 type)
    [all...]

Completed in 29 milliseconds