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

  /external/webrtc/webrtc/p2p/base/
stun.cc 89 const StunAddressAttribute* StunMessage::GetAddress(int type) const {
98 return reinterpret_cast<const StunAddressAttribute*>(mapped_address);
102 return static_cast<const StunAddressAttribute*>(GetAttribute(type));
441 return new StunAddressAttribute(type, length);
459 StunAddressAttribute* StunAttribute::CreateAddress(uint16_t type) {
460 return new StunAddressAttribute(type, 0);
488 StunAddressAttribute::StunAddressAttribute(uint16_t type,
494 StunAddressAttribute::StunAddressAttribute(uint16_t type, uint16_t length
    [all...]
stun.h 120 class StunAddressAttribute;
152 const StunAddressAttribute* GetAddress(int type) const;
237 static StunAddressAttribute* CreateAddress(uint16_t type);
257 class StunAddressAttribute : public StunAttribute {
262 StunAddressAttribute(uint16_t type, const rtc::SocketAddress& addr);
263 StunAddressAttribute(uint16_t type, uint16_t length);
319 class StunXorAddressAttribute : public StunAddressAttribute {

Completed in 891 milliseconds