esp8266ndn
NDN Arduino library for ESP8266 and more
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Public Types | Public Member Functions | List of all members
ndnph::lp::PacketClassify Class Reference

Decode NDNLPv2 packet for classification. More...

#include <lp.hpp>

Public Types

enum class  Type : uint16_t {
  None = 0 , Fragment = TT::FragIndex , Interest = TT::Interest , Data = TT::Data ,
  Nack = TT::Nack
}
 

Public Member Functions

 PacketClassify ()=default
 
 PacketClassify (L3Header l3header, tlv::Value payload)
 
bool decodeFrom (const Decoder::Tlv &input)
 
Type getType () const
 Determine L3 packet type. More...
 
const PitTokengetPitToken () const
 Retrieve PIT token. More...
 
Fragment getFragment () const
 Retrieve fragment. More...
 
bool decodeInterest (Interest interest) const
 Decode payload as Interest. More...
 
bool decodeData (Data data) const
 Decode payload as Data. More...
 
bool decodeNack (Nack nack) const
 Decode Nack. More...
 

Detailed Description

Decode NDNLPv2 packet for classification.

Member Enumeration Documentation

◆ Type

enum ndnph::lp::PacketClassify::Type : uint16_t
strong
Enumerator
None 
Fragment 
Interest 
Data 
Nack 

Constructor & Destructor Documentation

◆ PacketClassify() [1/2]

ndnph::lp::PacketClassify::PacketClassify ( )
explicitdefault

◆ PacketClassify() [2/2]

ndnph::lp::PacketClassify::PacketClassify ( L3Header  l3header,
tlv::Value  payload 
)
inlineexplicit

Member Function Documentation

◆ decodeData()

bool ndnph::lp::PacketClassify::decodeData ( Data  data) const
inline

Decode payload as Data.

Precondition
getType() == Type::Data

◆ decodeFrom()

bool ndnph::lp::PacketClassify::decodeFrom ( const Decoder::Tlv input)
inline

◆ decodeInterest()

bool ndnph::lp::PacketClassify::decodeInterest ( Interest  interest) const
inline

Decode payload as Interest.

Precondition
getType() == Type::Interest

◆ decodeNack()

bool ndnph::lp::PacketClassify::decodeNack ( Nack  nack) const
inline

Decode Nack.

Precondition
getType() == Nack

◆ getFragment()

Fragment ndnph::lp::PacketClassify::getFragment ( ) const
inline

Retrieve fragment.

Precondition
getType() == Type::Fragment

◆ getPitToken()

const PitToken& ndnph::lp::PacketClassify::getPitToken ( ) const
inline

Retrieve PIT token.

◆ getType()

Type ndnph::lp::PacketClassify::getType ( ) const
inline

Determine L3 packet type.


The documentation for this class was generated from the following file: