blob: e47fb5ff73c27dfe8657482085946437f5d0766f [file] [log] [blame]
Alexander Afanasyev33b72772014-01-26 23:22:58 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (C) 2014 Named Data Networking Project
4 * See COPYING for copyright and distribution information.
5 */
6
7#include "forwarder.hpp"
8
9namespace ndn {
10
11Forwarder::Forwarder(boost::asio::io_service& ioService)
12{
13}
14
15uint64_t
16Forwarder::addFace(const shared_ptr<Face>& face)
17{
18 return -1;
19}
20
21void
22Forwarder::removeFace(const shared_ptr<Face>& face)
23{
24}
25
26void
27Forwarder::onInterest(const Face& face, const Interest& interest)
28{
29}
30
31void
32Forwarder::onData(const Face& face, const Data& data)
33{
34}
35
36} // namespace ndn