NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.0: NDN, CCN, CCNx, content centric networks
API Documentation
ndn-consumer-window.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
20 #ifndef NDN_CONSUMER_WINDOW_H
21 #define NDN_CONSUMER_WINDOW_H
22 
23 #include "ns3/ndnSIM/model/ndn-common.hpp"
24 
25 #include "ndn-consumer.hpp"
26 #include "ns3/traced-value.h"
27 
28 namespace ns3 {
29 namespace ndn {
30 
39 class ConsumerWindow : public Consumer {
40 public:
41  static TypeId
42  GetTypeId();
43 
48 
49  // From App
50  virtual void
51  OnData(shared_ptr<const Data> contentObject);
52 
53  virtual void
54  OnTimeout(uint32_t sequenceNumber);
55 
56  virtual void
57  WillSendOutInterest(uint32_t sequenceNumber);
58 
59 public:
60  typedef void (*WindowTraceCallback)(uint32_t);
61 
62 protected:
67  virtual void
69 
70 private:
71  virtual void
72  SetWindow(uint32_t window);
73 
74  uint32_t
75  GetWindow() const;
76 
77  virtual void
78  SetPayloadSize(uint32_t payload);
79 
80  uint32_t
81  GetPayloadSize() const;
82 
83  double
84  GetMaxSize() const;
85 
86  void
87  SetMaxSize(double size);
88 
89  uint32_t
90  GetSeqMax() const;
91 
92  void
93  SetSeqMax(uint32_t seqMax);
94 
95 private:
96  uint32_t m_payloadSize; // expected payload size
97  double m_maxSize; // max size to request
98 
99  uint32_t m_initialWindow;
100  bool m_setInitialWindowOnTimeout;
101 
102  TracedValue<uint32_t> m_window;
103  TracedValue<uint32_t> m_inFlight;
104 };
105 
106 } // namespace ndn
107 } // namespace ns3
108 
109 #endif
Copyright (c) 2011-2015 Regents of the University of California.
Ndn application for sending out Interest packets (window-based)
virtual void OnTimeout(uint32_t sequenceNumber)
Timeout event.
virtual void ScheduleNextPacket()
Constructs the Interest packet and sends it using a callback to the underlying NDN protocol...
NDN application for sending out Interest packets.
ConsumerWindow()
Default constructor.
Copyright (c) 2011-2015 Regents of the University of California.
virtual void OnData(shared_ptr< const Data > contentObject)
Method that will be called every time new Data arrives.
virtual void WillSendOutInterest(uint32_t sequenceNumber)
An event that is fired just before an Interest packet is actually send out (send is inevitable) ...
void(* WindowTraceCallback)(uint32_t)