NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.0: NDN, CCN, CCNx, content centric networks
API Documentation
rtt-estimator.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
26 #ifndef NFD_DAEMON_FW_RTT_ESTIMATOR_HPP
27 #define NFD_DAEMON_FW_RTT_ESTIMATOR_HPP
28 
29 #include "common.hpp"
30 
31 namespace nfd {
32 
44 {
45 public:
46  typedef time::microseconds Duration;
47 
48  static Duration
50  {
51  return time::seconds(1);
52  }
53 
54  RttEstimator(uint16_t maxMultiplier = 16,
55  Duration minRto = time::milliseconds(1),
56  double gain = 0.1);
57 
58  void
59  addMeasurement(Duration measure);
60 
61  void
63 
64  void
66 
67  Duration
68  computeRto() const;
69 
70 private:
71  uint16_t m_maxMultiplier;
72  double m_minRto;
73 
74  double m_rtt;
75  double m_gain;
76  double m_variance;
77  uint16_t m_multiplier;
78  uint32_t m_nSamples;
79 };
80 
81 } // namespace nfd
82 
83 #endif // NFD_DAEMON_FW_RTT_ESTIMATOR_HPP
time::microseconds Duration
RttEstimator(uint16_t maxMultiplier=16, Duration minRto=time::milliseconds(1), double gain=0.1)
Duration computeRto() const
void addMeasurement(Duration measure)
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:38
implements the Mean-Deviation RTT estimator
static Duration getInitialRtt(void)