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

  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun.h 135 class StunAttribute;
180 bool AddAttribute(StunAttribute* attr);
213 StunAttribute* CreateAttribute(int type, size_t length) /* const*/;
214 const StunAttribute* GetAttribute(int type) const;
220 std::vector<StunAttribute*>* attrs_;
224 class StunAttribute {
226 virtual ~StunAttribute() {
247 static StunAttribute* Create(StunAttributeValueType value_type, uint16 type,
260 StunAttribute(uint16 type, uint16 length);
271 class StunAddressAttribute : public StunAttribute {
    [all...]
stun.cc 67 attrs_ = new std::vector<StunAttribute*>();
91 bool StunMessage::AddAttribute(StunAttribute* attr) {
111 const StunAttribute* mapped_address =
358 StunAttribute* attr = CreateAttribute(attr_type, attr_length);
412 StunAttribute* StunMessage::CreateAttribute(int type, size_t length) /*const*/ {
414 return StunAttribute::Create(value_type, type,
418 const StunAttribute* StunMessage::GetAttribute(int type) const {
431 // StunAttribute
433 StunAttribute::StunAttribute(uint16 type, uint16 length
    [all...]

Completed in 33 milliseconds