U8TlvValue class. More...
#include "wimax-tlv.h"
Public Member Functions | |
U8TlvValue (uint8_t value) | |
Constructor. More... | |
U8TlvValue () | |
~U8TlvValue (void) | |
U8TlvValue * | Copy (void) const |
Copy. More... | |
virtual uint32_t | Deserialize (Buffer::Iterator start, uint64_t valueLen) |
Deserialize from a buffer. More... | |
uint32_t | Deserialize (Buffer::Iterator start) |
Deserialize from a buffer. More... | |
virtual uint32_t | GetSerializedSize (void) const |
Get serialized size in bytes. More... | |
uint8_t | GetValue (void) const |
Get value. More... | |
virtual void | Serialize (Buffer::Iterator start) const |
Serialize to a buffer. More... | |
Public Member Functions inherited from ns3::TlvValue | |
virtual | ~TlvValue () |
Private Attributes | |
uint8_t | m_value |
value More... | |
U8TlvValue class.
Definition at line 170 of file wimax-tlv.h.
ns3::U8TlvValue::U8TlvValue | ( | uint8_t | value | ) |
Constructor.
value | value to encode |
Definition at line 500 of file wimax-tlv.cc.
References m_value.
ns3::U8TlvValue::U8TlvValue | ( | ) |
ns3::U8TlvValue::~U8TlvValue | ( | void | ) |
Definition at line 510 of file wimax-tlv.cc.
|
virtual |
Copy.
Implements ns3::TlvValue.
Definition at line 543 of file wimax-tlv.cc.
References m_value, and U8TlvValue().
|
virtual |
Deserialize from a buffer.
start | the iterator |
valueLen | the maximum length of the value |
Implements ns3::TlvValue.
Definition at line 524 of file wimax-tlv.cc.
Referenced by ns3::SfVectorTlvValue::Deserialize(), ns3::CsParamVectorTlvValue::Deserialize(), and ns3::ClassificationRuleVectorTlvValue::Deserialize().
uint32_t ns3::U8TlvValue::Deserialize | ( | Buffer::Iterator | start | ) |
Deserialize from a buffer.
start | the iterator |
Definition at line 530 of file wimax-tlv.cc.
References m_value, and ns3::Buffer::Iterator::ReadU8().
|
virtual |
Get serialized size in bytes.
Implements ns3::TlvValue.
Definition at line 514 of file wimax-tlv.cc.
uint8_t ns3::U8TlvValue::GetValue | ( | void | ) | const |
|
virtual |
Serialize to a buffer.
start | the iterator |
Implements ns3::TlvValue.
Definition at line 519 of file wimax-tlv.cc.
References m_value, and ns3::Buffer::Iterator::WriteU8().
|
private |
value
Definition at line 201 of file wimax-tlv.h.
Referenced by Copy(), Deserialize(), GetValue(), Serialize(), and U8TlvValue().