blob: 603be0eacacbc486aa34204f5e07f7c29e3dadc5 [file] [log] [blame]
Junxiao Shi986b8492014-08-20 12:07:14 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi192af1f2015-01-13 23:19:39 -07003 * 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.
Junxiao Shi986b8492014-08-20 12:07:14 -070010 *
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_BEST_ROUTE_STRATEGY2_HPP
27#define NFD_DAEMON_FW_BEST_ROUTE_STRATEGY2_HPP
28
29#include "strategy.hpp"
Junxiao Shia788e252015-01-28 17:06:25 -070030#include "retx-suppression-fixed.hpp"
Junxiao Shi986b8492014-08-20 12:07:14 -070031
32namespace nfd {
33namespace fw {
34
35/** \brief Best Route strategy version 2
36 *
37 * This strategy forwards a new Interest to the lowest-cost nexthop (except downstream).
38 * After that, it recognizes consumer retransmission:
39 * if a similar Interest arrives from any downstream after MIN_RETRANSMISSION_INTERVAL,
40 * the strategy forwards the Interest again to the lowest-cost nexthop (except downstream)
41 * that is not previously used. If all nexthops have been used, the strategy starts over.
42 */
43class BestRouteStrategy2 : public Strategy
44{
45public:
46 BestRouteStrategy2(Forwarder& forwarder, const Name& name = STRATEGY_NAME);
47
48 virtual void
49 afterReceiveInterest(const Face& inFace,
50 const Interest& interest,
51 shared_ptr<fib::Entry> fibEntry,
Junxiao Shi1c93cae2014-12-09 22:52:17 -070052 shared_ptr<pit::Entry> pitEntry) DECL_OVERRIDE;
Junxiao Shi986b8492014-08-20 12:07:14 -070053
54public:
55 static const Name STRATEGY_NAME;
Junxiao Shi192af1f2015-01-13 23:19:39 -070056
57private:
Junxiao Shia788e252015-01-28 17:06:25 -070058 RetxSuppressionFixed m_retxSuppression;
Junxiao Shi986b8492014-08-20 12:07:14 -070059};
60
61} // namespace fw
62} // namespace nfd
63
64#endif // NFD_DAEMON_FW_BEST_ROUTE_STRATEGY2_HPP