blob: c2f190bef8683efe5538374830e46ff475e23f37 [file] [log] [blame]
Junxiao Shi192af1f2015-01-13 23:19:39 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ashlesh Gawande90015992017-07-11 17:25:48 -05002/*
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Junxiao Shi192af1f2015-01-13 23:19:39 -07004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
10 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
Junxiao Shia788e252015-01-28 17:06:25 -070026#include "retx-suppression-fixed.hpp"
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040027#include "algorithm.hpp"
Junxiao Shi192af1f2015-01-13 23:19:39 -070028
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040029namespace nfd::fw {
Junxiao Shi192af1f2015-01-13 23:19:39 -070030
Junxiao Shia788e252015-01-28 17:06:25 -070031RetxSuppressionFixed::RetxSuppressionFixed(const time::milliseconds& minRetxInterval)
32 : m_minRetxInterval(minRetxInterval)
33{
Davide Pesaventoe4b22382018-06-10 14:37:24 -040034 BOOST_ASSERT(minRetxInterval > 0_ms);
Junxiao Shia788e252015-01-28 17:06:25 -070035}
36
Ashlesh Gawande90015992017-07-11 17:25:48 -050037RetxSuppressionResult
38RetxSuppressionFixed::decidePerPitEntry(pit::Entry& pitEntry) const
Junxiao Shi192af1f2015-01-13 23:19:39 -070039{
Junxiao Shifef73e42016-03-29 14:15:05 -070040 bool isNewPitEntry = !hasPendingOutRecords(pitEntry);
Junxiao Shi192af1f2015-01-13 23:19:39 -070041 if (isNewPitEntry) {
Ashlesh Gawande90015992017-07-11 17:25:48 -050042 return RetxSuppressionResult::NEW;
Junxiao Shi192af1f2015-01-13 23:19:39 -070043 }
44
Davide Pesavento412c9822021-07-02 00:21:05 -040045 auto lastOutgoing = getLastOutgoing(pitEntry);
46 auto now = time::steady_clock::now();
47 auto sinceLastOutgoing = now - lastOutgoing;
Junxiao Shia788e252015-01-28 17:06:25 -070048 bool shouldSuppress = sinceLastOutgoing < m_minRetxInterval;
Ashlesh Gawande90015992017-07-11 17:25:48 -050049 return shouldSuppress ? RetxSuppressionResult::SUPPRESS : RetxSuppressionResult::FORWARD;
Junxiao Shi192af1f2015-01-13 23:19:39 -070050}
51
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040052} // namespace nfd::fw