blob: 90e13fd24083d69a48ca16a0ff7ec9231fa07db2 [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/*
Mark Theeranantachai195b78a2024-02-14 20:54:44 -05003 * Copyright (c) 2014-2024, 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
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040032namespace nfd::fw {
Junxiao Shi67ba8d22015-08-21 21:21:28 -070033
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040034/**
35 * \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
Mark Theeranantachai195b78a2024-02-14 20:54:44 -050052 onInterestLoop(const Interest& interest, const FaceEndpoint& ingress) override
53 {
54 // do nothing
55 }
56
57 void
Alexander Afanasyev40604e32021-02-17 12:06:26 -050058 afterNewNextHop(const fib::NextHop& nextHop, const shared_ptr<pit::Entry>& pitEntry) override;
59
Davide Pesavento264af772021-02-09 21:48:24 -050060NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040061 std::unique_ptr<RetxSuppressionExponential> m_retxSuppression;
Junxiao Shi67ba8d22015-08-21 21:21:28 -070062};
63
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040064} // namespace nfd::fw
Junxiao Shi67ba8d22015-08-21 21:21:28 -070065
66#endif // NFD_DAEMON_FW_MULTICAST_STRATEGY_HPP