blob: b56b81dfe26ce3635738d25cb3fe8d976b16bc5b [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi1e46be32015-01-08 20:18:05 -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.
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 Shi1e46be32015-01-08 20:18:05 -070024 */
Giulio Grassi624f6c62014-02-18 19:42:14 +010025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_FACE_UDP_FACE_HPP
27#define NFD_DAEMON_FACE_UDP_FACE_HPP
Giulio Grassi624f6c62014-02-18 19:42:14 +010028
29#include "datagram-face.hpp"
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070030#include "core/scheduler.hpp"
Giulio Grassi624f6c62014-02-18 19:42:14 +010031
Davide Pesaventod8d4d982014-03-21 18:47:58 +010032namespace nfd {
Giulio Grassi624f6c62014-02-18 19:42:14 +010033
34/**
35 * \brief Implementation of Face abstraction that uses UDP
36 * as underlying transport mechanism
37 */
38class UdpFace : public DatagramFace<boost::asio::ip::udp>
39{
40public:
Giulio Grassi69871f02014-03-09 16:14:44 +010041 UdpFace(const shared_ptr<protocol::socket>& socket,
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070042 bool isOnDemand,
43 const time::seconds& idleTimeout);
44
45 virtual
46 ~UdpFace();
Giulio Grassi624f6c62014-02-18 19:42:14 +010047
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070048 virtual ndn::nfd::FaceStatus
49 getFaceStatus() const;
50
51private:
52 void
53 closeIfIdle();
54
55private:
Junxiao Shi1e46be32015-01-08 20:18:05 -070056 scheduler::EventId m_closeIfIdleEvent;
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070057 time::seconds m_idleTimeout;
58 time::steady_clock::TimePoint m_lastIdleCheck;
Giulio Grassi624f6c62014-02-18 19:42:14 +010059};
60
61} // namespace nfd
62
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070063#endif // NFD_DAEMON_FACE_UDP_FACE_HPP