| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| /** |
| * Copyright (C) 2014 Named Data Networking Project |
| * See COPYING for copyright and distribution information. |
| */ |
| |
| #ifndef NFD_FW_CLIENT_CONTROL_STRATEGY_HPP |
| #define NFD_FW_CLIENT_CONTROL_STRATEGY_HPP |
| |
| #include "best-route-strategy.hpp" |
| |
| namespace nfd { |
| namespace fw { |
| |
| /** \brief a forwarding strategy that forwards Interests |
| * according to NextHopFaceId field in LocalControlHeader |
| */ |
| class ClientControlStrategy : public BestRouteStrategy |
| { |
| public: |
| ClientControlStrategy(Forwarder& forwarder, const Name& name = STRATEGY_NAME); |
| |
| virtual |
| ~ClientControlStrategy(); |
| |
| virtual void |
| afterReceiveInterest(const Face& inFace, |
| const Interest& interest, |
| shared_ptr<fib::Entry> fibEntry, |
| shared_ptr<pit::Entry> pitEntry); |
| |
| public: |
| static const Name STRATEGY_NAME; |
| }; |
| |
| } // namespace fw |
| } // namespace nfd |
| |
| #endif // NFD_FW_CLIENT_CONTROL_STRATEGY_HPP |