NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
ndnSIM
ndnSIM documentation
All Attributes
All GlobalValues
All LogComponents
All TraceSources
Todo List
Deprecated List
Modules
Namespaces
Classes
Files
File List
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
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
47
ConsumerWindow
();
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
68
ScheduleNextPacket
();
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
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-strategy-choice-helper.hpp:34
ndn-consumer.hpp
ns3::ndn::ConsumerWindow
Ndn application for sending out Interest packets (window-based)
Definition:
ndn-consumer-window.hpp:39
ns3::ndn::ConsumerWindow::GetTypeId
static TypeId GetTypeId()
Definition:
ndn-consumer-window.cpp:38
ns3::ndn::ConsumerWindow::OnTimeout
virtual void OnTimeout(uint32_t sequenceNumber)
Timeout event.
Definition:
ndn-consumer-window.cpp:199
ns3::ndn::ConsumerWindow::ScheduleNextPacket
virtual void ScheduleNextPacket()
Constructs the Interest packet and sends it using a callback to the underlying NDN protocol...
Definition:
ndn-consumer-window.cpp:155
ns3::ndn::Consumer
NDN application for sending out Interest packets.
Definition:
ndn-consumer.hpp:49
ns3::ndn::ConsumerWindow::ConsumerWindow
ConsumerWindow()
Default constructor.
Definition:
ndn-consumer-window.cpp:85
ns3
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
content-store-impl.cpp:38
ns3::ndn::ConsumerWindow::OnData
virtual void OnData(shared_ptr< const Data > contentObject)
Method that will be called every time new Data arrives.
Definition:
ndn-consumer-window.cpp:185
ns3::ndn::ConsumerWindow::WillSendOutInterest
virtual void WillSendOutInterest(uint32_t sequenceNumber)
An event that is fired just before an Interest packet is actually send out (send is inevitable) ...
Definition:
ndn-consumer-window.cpp:214
ns3::ndn::ConsumerWindow::WindowTraceCallback
void(* WindowTraceCallback)(uint32_t)
Definition:
ndn-consumer-window.hpp:60
ndnSIM
apps
ndn-consumer-window.hpp
Generated on Thu Nov 2 2017 03:30:28 for ndnSIM by
1.8.11