blob: fddc13681afafc3b5f99a726d05415176aff444f [file] [log] [blame]
Ilya Moiseenko08a98a42011-08-02 16:06:51 -07001//
2// ndn_interestpacket.h
3// Abstraction
4//
5// Copyright 2011 UCLA. All rights reserved.
6//
7
8#ifndef ndn_interestpacket_h
9#define ndn_interestpacket_h
10
11//#define CCN_INTEREST_LIFETIME_SEC 4
12//#define CCN_INTEREST_LIFETIME_MICROSEC (CCN_INTEREST_LIFETIME_SEC * 1000000)
13
14#include "ns3/header.h"
15#include <ns3/packet.h>
16
17namespace ns3
18{
19 class InterestPacket : public Packet
20 {
21
22 };
23}
24
25#endif