blob: 5b1a00d4229a7745ff988067a24a7683cec4b86d [file] [log] [blame]
Junxiao Shif4c1eb32017-05-30 17:05:10 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento755f8a82018-08-24 00:06:45 -04002/*
3 * Copyright (c) 2013-2018 Regents of the University of California.
Junxiao Shif4c1eb32017-05-30 17:05:10 +00004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
7 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20 *
21 * @author Davide Pesavento <davide.pesavento@lip6.fr>
22 */
23
Junxiao Shi25467942017-06-30 02:53:14 +000024#ifndef NDN_NET_NETWORK_MONITOR_IMPL_NOOP_HPP
25#define NDN_NET_NETWORK_MONITOR_IMPL_NOOP_HPP
Junxiao Shif4c1eb32017-05-30 17:05:10 +000026
27#include "../network-monitor.hpp"
28
29namespace ndn {
Junxiao Shi25467942017-06-30 02:53:14 +000030namespace net {
Junxiao Shif4c1eb32017-05-30 17:05:10 +000031
Junxiao Shi2dc416d2017-07-03 04:46:16 +000032class NetworkMonitorImplNoop : public NetworkMonitorImpl
Junxiao Shif4c1eb32017-05-30 17:05:10 +000033{
34public:
Junxiao Shi2dc416d2017-07-03 04:46:16 +000035 explicit
Davide Pesavento755f8a82018-08-24 00:06:45 -040036 NetworkMonitorImplNoop(boost::asio::io_service&)
37 {
38 }
Junxiao Shif4c1eb32017-05-30 17:05:10 +000039
40 uint32_t
Junxiao Shi2dc416d2017-07-03 04:46:16 +000041 getCapabilities() const final
Junxiao Shif4c1eb32017-05-30 17:05:10 +000042 {
43 return NetworkMonitor::CAP_NONE;
44 }
45
Junxiao Shi2dc416d2017-07-03 04:46:16 +000046 shared_ptr<const NetworkInterface>
47 getNetworkInterface(const std::string&) const final
Junxiao Shif4c1eb32017-05-30 17:05:10 +000048 {
49 return {};
50 }
51
Junxiao Shi2dc416d2017-07-03 04:46:16 +000052 std::vector<shared_ptr<const NetworkInterface>>
53 listNetworkInterfaces() const final
Junxiao Shif4c1eb32017-05-30 17:05:10 +000054 {
55 return {};
56 }
57};
58
Junxiao Shi25467942017-06-30 02:53:14 +000059} // namespace net
Junxiao Shif4c1eb32017-05-30 17:05:10 +000060} // namespace ndn
61
Junxiao Shi25467942017-06-30 02:53:14 +000062#endif // NDN_NET_NETWORK_MONITOR_IMPL_NOOP_HPP