blob: fe122a44ad5d59d957bcbb0743ac6edaf6eca85f [file] [log] [blame]
Junxiao Shi67ba8d22015-08-21 21:21:28 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
ashiqopuc7079482019-02-20 05:34:37 +00002/*
Davide Pesavento264af772021-02-09 21:48:24 -05003 * Copyright (c) 2014-2021, Regents of the University of California,
Junxiao Shi67ba8d22015-08-21 21:21:28 -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
26#ifndef NFD_DAEMON_FW_MULTICAST_STRATEGY_HPP
27#define NFD_DAEMON_FW_MULTICAST_STRATEGY_HPP
28
29#include "strategy.hpp"
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +000030#include "retx-suppression-exponential.hpp"
Junxiao Shi67ba8d22015-08-21 21:21:28 -070031
32namespace nfd {
33namespace fw {
34
Teng Liangebc20f62020-06-23 16:55:20 -070035/** \brief A forwarding strategy that forwards Interests to all FIB nexthops
Junxiao Shi67ba8d22015-08-21 21:21:28 -070036 */
37class MulticastStrategy : public Strategy
38{
39public:
Ashlesh Gawandee38e2612017-02-25 07:23:41 +000040 explicit
Junxiao Shi037f4ab2016-12-13 04:27:06 +000041 MulticastStrategy(Forwarder& forwarder, const Name& name = getStrategyName());
42
43 static const Name&
44 getStrategyName();
Junxiao Shi67ba8d22015-08-21 21:21:28 -070045
Davide Pesavento0498ce82021-06-14 02:02:21 -040046public: // triggers
Ashlesh Gawandee38e2612017-02-25 07:23:41 +000047 void
Davide Pesavento0498ce82021-06-14 02:02:21 -040048 afterReceiveInterest(const Interest& interest, const FaceEndpoint& ingress,
Junxiao Shi15e98b02016-08-12 11:21:44 +000049 const shared_ptr<pit::Entry>& pitEntry) override;
Ashlesh Gawandee38e2612017-02-25 07:23:41 +000050
Alexander Afanasyev40604e32021-02-17 12:06:26 -050051 void
52 afterNewNextHop(const fib::NextHop& nextHop, const shared_ptr<pit::Entry>& pitEntry) override;
53
Ashlesh Gawandee38e2612017-02-25 07:23:41 +000054private:
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +000055 RetxSuppressionExponential m_retxSuppression;
56
Davide Pesavento264af772021-02-09 21:48:24 -050057NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +000058 static const time::milliseconds RETX_SUPPRESSION_INITIAL;
59 static const time::milliseconds RETX_SUPPRESSION_MAX;
Junxiao Shi67ba8d22015-08-21 21:21:28 -070060};
61
62} // namespace fw
63} // namespace nfd
64
65#endif // NFD_DAEMON_FW_MULTICAST_STRATEGY_HPP