implements the Mean-Deviation RTT estimator More...
#include <core/rtt-estimator.hpp>
Public Types | |
typedef time::microseconds | Duration |
Public Member Functions | |
RttEstimator (uint16_t maxMultiplier=16, Duration minRto=time::milliseconds(1), double gain=0.1) | |
void | addMeasurement (Duration measure) |
Duration | computeRto () const |
void | doubleMultiplier () |
void | incrementMultiplier () |
Static Public Member Functions | |
static Duration | getInitialRtt (void) |
implements the Mean-Deviation RTT estimator
reference: ns3::RttMeanDeviation
This RttEstimator algorithm is designed for TCP, which is a continuous stream. NDN Interest-Data traffic is not always a continuous stream, so NDN may need a different RttEstimator. The design of a more suitable RttEstimator is a research question.
Definition at line 43 of file rtt-estimator.hpp.
typedef time::microseconds nfd::RttEstimator::Duration |
Definition at line 46 of file rtt-estimator.hpp.
nfd::RttEstimator::RttEstimator | ( | uint16_t | maxMultiplier = 16 , |
Duration | minRto = time::milliseconds(1) , |
||
double | gain = 0.1 |
||
) |
Definition at line 30 of file rtt-estimator.cpp.
void nfd::RttEstimator::addMeasurement | ( | Duration | measure | ) |
Definition at line 42 of file rtt-estimator.cpp.
RttEstimator::Duration nfd::RttEstimator::computeRto | ( | ) | const |
Definition at line 73 of file rtt-estimator.cpp.
void nfd::RttEstimator::doubleMultiplier | ( | ) |
Definition at line 67 of file rtt-estimator.cpp.
|
inlinestatic |
Definition at line 49 of file rtt-estimator.hpp.
void nfd::RttEstimator::incrementMultiplier | ( | ) |
Definition at line 61 of file rtt-estimator.cpp.