Home
last modified time | relevance | path

Searched refs:StunErrorCodeAttribute (Results 1 – 7 of 7) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/p2p/base/
Dstun.cc121 const StunErrorCodeAttribute* StunMessage::GetErrorCode() const { in GetErrorCode()
122 return reinterpret_cast<const StunErrorCodeAttribute*>( in GetErrorCode()
243 if (length < StunErrorCodeAttribute::MIN_SIZE) in Create()
245 return new StunErrorCodeAttribute(type, length); in Create()
308 StunErrorCodeAttribute* StunAttribute::CreateErrorCode() { in CreateErrorCode()
309 return new StunErrorCodeAttribute( in CreateErrorCode()
310 STUN_ATTR_ERROR_CODE, StunErrorCodeAttribute::MIN_SIZE); in CreateErrorCode()
418 StunErrorCodeAttribute::StunErrorCodeAttribute(uint16 type, uint16 length) in StunErrorCodeAttribute() function in cricket::StunErrorCodeAttribute
422 StunErrorCodeAttribute::~StunErrorCodeAttribute() { in ~StunErrorCodeAttribute()
425 void StunErrorCodeAttribute::SetErrorCode(uint32 code) { in SetErrorCode()
[all …]
Dstun.h110 class StunErrorCodeAttribute; variable
133 const StunErrorCodeAttribute* GetErrorCode() const;
181 static StunErrorCodeAttribute* CreateErrorCode();
272 class StunErrorCodeAttribute : public StunAttribute {
274 StunErrorCodeAttribute(uint16 type, uint16 length);
275 ~StunErrorCodeAttribute();
Dstunserver.cc143 StunErrorCodeAttribute* err_code = StunAttribute::CreateErrorCode(); in SendErrorResponse()
Dport.cc296 if (const StunErrorCodeAttribute* error_code = stun_msg->GetErrorCode()) { in GetStunMessage()
395 StunErrorCodeAttribute* error_attr = StunAttribute::CreateErrorCode(); in SendBindingErrorResponse()
805 const StunErrorCodeAttribute* error = response->GetErrorCode(); in OnConnectionRequestErrorResponse()
Dstunport.cc83 const StunErrorCodeAttribute* attr = response->GetErrorCode(); in OnErrorResponse()
Drelayport.cc775 const StunErrorCodeAttribute* attr = response->GetErrorCode(); in OnErrorResponse()
Drelayserver.cc88 StunErrorCodeAttribute* err_code = StunAttribute::CreateErrorCode(); in SendStunError()