NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
nack.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
24 #include "nack.hpp"
25 
26 namespace ndn {
27 namespace lp {
28 
29 Nack::Nack(const Interest& interest)
30  : m_interest(interest)
31 {
32 }
33 
34 Nack::Nack(Interest&& interest)
35  : m_interest(interest)
36 {
37 }
38 
39 } // namespace lp
40 } // namespace ndn
Copyright (c) 2011-2015 Regents of the University of California.
represents an Interest packet
Definition: interest.hpp:42
Nack()=default