blob: 829b3bc6af2e7f96eee7bbc32e2011e1ba69470e [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
Davide Pesavento66ff0982015-01-29 22:39:00 +010045 ~UdpFace() DECL_OVERRIDE;
Giulio Grassi624f6c62014-02-18 19:42:14 +010046
Davide Pesavento66ff0982015-01-29 22:39:00 +010047 ndn::nfd::FaceStatus
48 getFaceStatus() const DECL_OVERRIDE;
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070049
50private:
51 void
52 closeIfIdle();
53
54private:
Junxiao Shi1e46be32015-01-08 20:18:05 -070055 scheduler::EventId m_closeIfIdleEvent;
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070056 time::seconds m_idleTimeout;
57 time::steady_clock::TimePoint m_lastIdleCheck;
Giulio Grassi624f6c62014-02-18 19:42:14 +010058};
59
60} // namespace nfd
61
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070062#endif // NFD_DAEMON_FACE_UDP_FACE_HPP