aboutsummaryrefslogtreecommitdiffstats
path: root/libtransport/src/protocols/cbr.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libtransport/src/protocols/cbr.cc')
-rw-r--r--libtransport/src/protocols/cbr.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/libtransport/src/protocols/cbr.cc b/libtransport/src/protocols/cbr.cc
index 0bffd7d18..fc8b53b8d 100644
--- a/libtransport/src/protocols/cbr.cc
+++ b/libtransport/src/protocols/cbr.cc
@@ -34,18 +34,6 @@ void CbrTransportProtocol::reset() {
current_window_size_);
}
-void CbrTransportProtocol::afterDataUnsatisfied(uint64_t segment) {}
-
-void CbrTransportProtocol::afterContentReception(
- const Interest &interest, const ContentObject &content_object) {
- auto segment = content_object.getName().getSuffix();
- auto now = utils::SteadyClock::now();
- auto rtt = std::chrono::duration_cast<utils::Microseconds>(
- now - interest_timepoints_[segment & mask]);
- // Update stats
- updateStats(segment, rtt.count(), now);
-}
-
} // end namespace protocol
} // end namespace transport