Class to represent ATTR ccnb-encoded node. More...
#include <attr.h>
Public Member Functions | |
Attr (Buffer::Iterator &start, uint32_t length) | |
Constructor that actually parsed ccnb-encoded ATTR block. More... | |
virtual void | accept (VoidNoArguVisitor &v) |
Accept visitor void(*)() | |
virtual void | accept (VoidVisitor &v, boost::any param) |
Accept visitor void(*)(boost::any) | |
virtual boost::any | accept (NoArguVisitor &v) |
Accept visitor boost::any(*)() | |
virtual boost::any | accept (Visitor &v, boost::any param) |
Accept visitor boost::any(*)(boost::any) | |
Public Attributes | |
std::string | m_attr |
field holding name of the attribute | |
Public Attributes inherited from ns3::ndn::wire::CcnbParser::BaseAttr | |
Ptr< Udata > | m_value |
Value of the attribute. | |
Additional Inherited Members | |
Static Public Member Functions inherited from ns3::ndn::wire::CcnbParser::Block | |
static Ptr< Block > | ParseBlock (Buffer::Iterator &start, bool dontParseBlock=false) |
Parsing stream (recursively) and creating a parsed BLOCK object. More... | |
Class to represent ATTR ccnb-encoded node.
ns3::ndn::wire::CcnbParser::Attr::Attr | ( | Buffer::Iterator & | start, |
uint32_t | length | ||
) |
Constructor that actually parsed ccnb-encoded ATTR block.
start | buffer iterator pointing to the first byte of ATTR block name |
length | length of ATTR name (extracted from the value field) |