NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
pit-out-record.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
26 #include "pit-out-record.hpp"
27 
28 namespace nfd {
29 namespace pit {
30 
32  : FaceRecord(face)
33 {
34 }
35 
36 bool
38 {
39  if (nack.getInterest().getNonce() != this->getLastNonce()) {
40  return false;
41  }
42 
43  m_incomingNack.reset(new lp::NackHeader(nack.getHeader()));
44  return true;
45 }
46 
47 } // namespace pit
48 } // namespace nfd
generalization of a network interface
Definition: face.hpp:67
const NackHeader & getHeader() const
Definition: nack.hpp:65
represents a Network Nack
Definition: nack.hpp:40
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:40
uint32_t getNonce() const
Get Interest's nonce.
Definition: interest.cpp:62
contains information about an Interest on an incoming or outgoing face
uint32_t getLastNonce() const
bool setIncomingNack(const lp::Nack &nack)
sets a NACK received from getFace()
represents a Network NACK header
Definition: nack-header.hpp:52
const Interest & getInterest() const
Definition: nack.hpp:53