blob: 7ec64ff1ba8fa990826dcc47a2aa1e7c7b7b3a14 [file] [log] [blame]
Junxiao Shid3c792f2014-01-30 00:46:13 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi986b8492014-08-20 12:07:14 -07003 * Copyright (c) 2014, 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
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -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/>.
Junxiao Shi986b8492014-08-20 12:07:14 -070024 */
Junxiao Shid3c792f2014-01-30 00:46:13 -070025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_FW_BEST_ROUTE_STRATEGY_HPP
27#define NFD_DAEMON_FW_BEST_ROUTE_STRATEGY_HPP
Junxiao Shid3c792f2014-01-30 00:46:13 -070028
29#include "strategy.hpp"
30
31namespace nfd {
Junxiao Shi8c8d2182014-01-30 22:33:00 -070032namespace fw {
Junxiao Shid3c792f2014-01-30 00:46:13 -070033
Junxiao Shi986b8492014-08-20 12:07:14 -070034/** \brief Best Route strategy version 1
35 *
36 * This strategy forwards a new Interest to the lowest-cost nexthop
37 * that is not same as the downstream, and does not violate scope.
38 * Subsequent similar Interests or consumer retransmissions are suppressed
39 * until after InterestLifetime expiry.
40 *
41 * \deprecated This strategy is superceded by Best Route strategy version 2,
42 * which allows consumer retransmissions. This version is kept for
43 * comparison purposes and is not recommended for general usage.
Junxiao Shid3c792f2014-01-30 00:46:13 -070044 */
45class BestRouteStrategy : public Strategy
46{
47public:
Junxiao Shif3c07812014-03-11 21:48:49 -070048 BestRouteStrategy(Forwarder& forwarder, const Name& name = STRATEGY_NAME);
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070049
Junxiao Shid3c792f2014-01-30 00:46:13 -070050 virtual
51 ~BestRouteStrategy();
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070052
Junxiao Shid3c792f2014-01-30 00:46:13 -070053 virtual void
54 afterReceiveInterest(const Face& inFace,
55 const Interest& interest,
56 shared_ptr<fib::Entry> fibEntry,
Junxiao Shi1c93cae2014-12-09 22:52:17 -070057 shared_ptr<pit::Entry> pitEntry) DECL_OVERRIDE;
Junxiao Shif3c07812014-03-11 21:48:49 -070058
59public:
60 static const Name STRATEGY_NAME;
Junxiao Shid3c792f2014-01-30 00:46:13 -070061};
62
Junxiao Shi8c8d2182014-01-30 22:33:00 -070063} // namespace fw
Junxiao Shid3c792f2014-01-30 00:46:13 -070064} // namespace nfd
65
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070066#endif // NFD_DAEMON_FW_BEST_ROUTE_STRATEGY_HPP