blob: a2559e44fea5f0751b113e8314c98cb23e61d881 [file] [log] [blame]
Junxiao Shi67ba8d22015-08-21 21:21:28 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014-2015, Regents of the University of California,
4 * 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#include "multicast-strategy.hpp"
27
28namespace nfd {
29namespace fw {
30
31const Name MulticastStrategy::STRATEGY_NAME("ndn:/localhost/nfd/strategy/multicast/%FD%01");
32NFD_REGISTER_STRATEGY(MulticastStrategy);
33
34MulticastStrategy::MulticastStrategy(Forwarder& forwarder, const Name& name)
35 : Strategy(forwarder, name)
36{
37}
38
39void
40MulticastStrategy::afterReceiveInterest(const Face& inFace,
41 const Interest& interest,
42 shared_ptr<fib::Entry> fibEntry,
43 shared_ptr<pit::Entry> pitEntry)
44{
45 const fib::NextHopList& nexthops = fibEntry->getNextHops();
46
47 for (fib::NextHopList::const_iterator it = nexthops.begin(); it != nexthops.end(); ++it) {
48 shared_ptr<Face> outFace = it->getFace();
49 if (pitEntry->canForwardTo(*outFace)) {
50 this->sendInterest(pitEntry, outFace);
51 }
52 }
53
54 if (!pitEntry->hasUnexpiredOutRecords()) {
55 this->rejectPendingInterest(pitEntry);
56 }
57}
58
59} // namespace fw
60} // namespace nfd