OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StunAttribute
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/p2p/base/
stun.h
119
class
StunAttribute
;
164
bool AddAttribute(
StunAttribute
* attr);
197
StunAttribute
* CreateAttribute(int type, size_t length) /* const*/;
198
const
StunAttribute
* GetAttribute(int type) const;
204
std::vector<
StunAttribute
*>* attrs_;
208
class
StunAttribute
{
210
virtual ~
StunAttribute
() {
231
static
StunAttribute
* Create(StunAttributeValueType value_type,
246
StunAttribute
(uint16_t type, uint16_t length);
257
class StunAddressAttribute : public
StunAttribute
{
[
all
...]
stun.cc
50
attrs_ = new std::vector<
StunAttribute
*>();
74
bool StunMessage::AddAttribute(
StunAttribute
* attr) {
94
const
StunAttribute
* mapped_address =
340
StunAttribute
* attr = CreateAttribute(attr_type, attr_length);
395
StunAttribute
* StunMessage::CreateAttribute(int type, size_t length) /*const*/ {
397
return
StunAttribute
::Create(value_type, type, static_cast<uint16_t>(length),
401
const
StunAttribute
* StunMessage::GetAttribute(int type) const {
414
//
StunAttribute
416
StunAttribute
::
StunAttribute
(uint16_t type, uint16_t length
[
all
...]
Completed in 44 milliseconds