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

  /external/webrtc/webrtc/p2p/base/
stun.cc 106 const StunUInt32Attribute* StunMessage::GetUInt32(int type) const {
107 return static_cast<const StunUInt32Attribute*>(GetAttribute(type));
251 kStunAttributeHeaderSize + StunUInt32Attribute::SIZE;
265 StunUInt32Attribute::SIZE)
278 StunUInt32Attribute* fingerprint_attr =
279 new StunUInt32Attribute(STUN_ATTR_FINGERPRINT, 0);
445 return new StunUInt32Attribute(type);
471 StunUInt32Attribute* StunAttribute::CreateUInt32(uint16_t type) {
472 return new StunUInt32Attribute(type);
644 StunUInt32Attribute::StunUInt32Attribute(uint16_t type, uint32_t value
    [all...]
stun.h 122 class StunUInt32Attribute;
153 const StunUInt32Attribute* GetUInt32(int type) const;
239 static StunUInt32Attribute* CreateUInt32(uint16_t type);
339 class StunUInt32Attribute : public StunAttribute {
342 StunUInt32Attribute(uint16_t type, uint32_t value);
343 explicit StunUInt32Attribute(uint16_t type);

Completed in 141 milliseconds