From fb964af25d28846511688a9ee8d0efd9a8885d81 Mon Sep 17 00:00:00 2001 From: michele papalini Date: Mon, 2 Dec 2019 19:15:19 +0100 Subject: [HICN-425] RTC min window Signed-off-by: michele papalini Change-Id: Ic75e11dcf43b7ed947a8f577d9aa5d345d5662ee --- libtransport/src/hicn/transport/protocols/rtc.cc | 3 --- 1 file changed, 3 deletions(-) (limited to 'libtransport/src/hicn') diff --git a/libtransport/src/hicn/transport/protocols/rtc.cc b/libtransport/src/hicn/transport/protocols/rtc.cc index c9993ac1c..6fbf1b018 100644 --- a/libtransport/src/hicn/transport/protocols/rtc.cc +++ b/libtransport/src/hicn/transport/protocols/rtc.cc @@ -371,9 +371,6 @@ void RTCTransportProtocol::updateWindow() { currentCWin_ = max((uint32_t)(currentCWin_ * HICN_WIN_DECREASE_FACTOR), HICN_MIN_CWIN); } - - if(currentCWin_ < HICN_MIN_CWIN) - currentCWin_ = HICN_MIN_CWIN; } void RTCTransportProtocol::decreaseWindow() { -- cgit 1.2.3-korg